diff --git a/ChangeLog.md b/ChangeLog.md
index 96c483c2831c..0b33bb8ca12a 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,86 @@
+## 3.6.1 - 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]
+
+#### Az.DataLakeStore
+* Added reference to System.Buffers explicitly in csproj and psd1.
+
+#### 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.
+
+#### Az.Monitor
+* Fixed output value for 'Get-AzMetricDefinition' [#9714]
+
+#### 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'
+
+#### 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
+
+#### 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'
+
+#### 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
+
## 3.5.0 - February 2020
### Highlights since the last major release
* Updated client side telemetry.
diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1
index 2fa1ea1fb6a5..444be5e14d31 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: 2/11/2020
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.7.2'
+ModuleVersion = '1.7.3'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -142,7 +142,9 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added SubscriptionId, TenantId, and execution time into data of client side telemetry'
+ ReleaseNotes = '* Open Azure PowerShell survey page in ''Send-Feedback'' [#11020]
+* Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021]
+* Added Az version in UserAgent'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md
index 9ae420974661..b7b97918bfd1 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.3
* Open Azure PowerShell survey page in `Send-Feedback` [#11020]
* Display Azure PowerShell survey URL in `Resolve-Error` [#11021]
* Added Az version in UserAgent
diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs
index 080a8381e883..44871b9cea6f 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.2")]
-[assembly: AssemblyFileVersion("1.7.2")]
+[assembly: AssemblyVersion("1.7.3")]
+[assembly: AssemblyFileVersion("1.7.3")]
#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 bed4bba2b4bd..be6b299b2018 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 1ccd685f6ccf..cf6af30602a3 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 22968d5c2c79..c6310fde51db 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 fd9a8c73a533..38ba89be8ae3 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 1a0001907f28..74cdf772c39c 100644
--- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
+++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 1/21/2020
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.3.4'
+ModuleVersion = '1.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.ApiManagement.dll',
@@ -188,12 +188,10 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* **Get-AzApiManagementApiSchema** Fixed getting Open-Api Schema associated with an API
- https://github.com/Azure/azure-powershell/issues/10626
-* **New-AzApiManagementProduct*** and **Set-AzApiManagementProduct**
- - Fix documentation for https://github.com/Azure/azure-powershell/issues/10472
-* **Set-AzApiManagementApi**
- Added example to show how to update the ServiceUrl using the cmdlet'
+ ReleaseNotes = '* 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]'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md
index 217eb8d3099e..3655e002ca45 100644
--- a/src/ApiManagement/ApiManagement/ChangeLog.md
+++ b/src/ApiManagement/ApiManagement/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.4.0
* 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
diff --git a/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs b/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs
index ac5c2bb4f607..d46cac72009c 100644
--- a/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs
+++ b/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs
@@ -41,5 +41,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.3.4")]
-[assembly: AssemblyFileVersion("1.3.4")]
+[assembly: AssemblyVersion("1.4.0")]
+[assembly: AssemblyFileVersion("1.4.0")]
diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1
index c428da6050c9..7e94f7bc402c 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 8e0ad8bf62df..e022d2066e45 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: 2/11/2020
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.1.4'
+ModuleVersion = '0.1.5'
# 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll',
@@ -117,7 +117,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added policy management cmdlets to ''Az.Attestation'' module'
+ ReleaseNotes = '* Added policy signer management cmdlets to ''Az.Attestation'' module
+* Added ''Location'' and ''Tag'' to ''New-AzAttestation'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Attestation/Attestation/ChangeLog.md b/src/Attestation/Attestation/ChangeLog.md
index 4af02a998a5e..c1fd8e4a592f 100644
--- a/src/Attestation/Attestation/ChangeLog.md
+++ b/src/Attestation/Attestation/ChangeLog.md
@@ -20,9 +20,11 @@
## Upcoming Release
+* Added three additional required assemblies to Az.Attestation.psd1
+
+## Version 0.1.5
* Added policy signer management cmdlets to `Az.Attestation` module
* Added `Location` and `Tag` to `New-AzAttestation`
-* Added three additional required assemblies to Az.Attestation.psd1
## Version 0.1.4
* Added policy management cmdlets to `Az.Attestation` module
diff --git a/src/Attestation/Attestation/Properties/AssemblyInfo.cs b/src/Attestation/Attestation/Properties/AssemblyInfo.cs
index 05c83b79e724..5055b63a3dd4 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.4")]
-[assembly: AssemblyFileVersion("0.1.4")]
+[assembly: AssemblyVersion("0.1.5")]
+[assembly: AssemblyFileVersion("0.1.5")]
#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 8181842b7799..2ab191ba955e 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 b6432988279f..e51145bf103e 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 a5d621abea60..799f7a8d4d25 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 36723f7cf8cc..144076148861 100644
--- a/src/Blueprint/Blueprint/Az.Blueprint.psd1
+++ b/src/Blueprint/Blueprint/Az.Blueprint.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 1/29/2020
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.2.10'
+ModuleVersion = '0.2.11'
# 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Blueprint.dll'
@@ -114,7 +114,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added support to include subfolders when deploying blueprints with artifacts'
+ ReleaseNotes = '* Showed DependsOn property value in the table view
+* Added support to accept PolicyDefinitionParameter empty '
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Blueprint/Blueprint/ChangeLog.md b/src/Blueprint/Blueprint/ChangeLog.md
index 16998e6460e9..474a05d591d1 100644
--- a/src/Blueprint/Blueprint/ChangeLog.md
+++ b/src/Blueprint/Blueprint/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 0.2.11
* Showed DependsOn property value in the table view
* Added support to accept PolicyDefinitionParameter empty
diff --git a/src/Blueprint/Blueprint/Properties/AssemblyInfo.cs b/src/Blueprint/Blueprint/Properties/AssemblyInfo.cs
index f50bc4435010..8e388dd07408 100644
--- a/src/Blueprint/Blueprint/Properties/AssemblyInfo.cs
+++ b/src/Blueprint/Blueprint/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("0.2.10")]
-[assembly: AssemblyFileVersion("0.2.10")]
+[assembly: AssemblyVersion("0.2.11")]
+[assembly: AssemblyFileVersion("0.2.11")]
#if SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.ResourceManager.Blueprint.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
#else
diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1
index f86eec075470..462206f83b34 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 0f7f959f65d1..8e7be6a67a67 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.CognitiveServices.dll'
diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1
index ea9bb5543333..582fc656330b 100644
--- a/src/Compute/Compute/Az.Compute.psd1
+++ b/src/Compute/Compute/Az.Compute.psd1
@@ -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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Compute.dll',
diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1
index 9a8ae2061d47..6b16cb0c94c7 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 b5d378f63cd3..eedf3ab669bf 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 4061e8608f2c..487d7207904f 100644
--- a/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1
+++ b/src/CosmosDB/CosmosDB/Az.CosmosDB.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.CosmosDB.dll'
diff --git a/src/DataBox/DataBox/Az.DataBox.psd1 b/src/DataBox/DataBox/Az.DataBox.psd1
index 540d46e2066b..194e3f2c8ceb 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 1292fb25e98f..c29e2514a2cb 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 308b1c4811fe..a51e30eb31f0 100644
--- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1
+++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataFactory.dll',
diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1
index 28550cfee179..775dce894ff2 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 c06cc1e0f951..1bbb7068e822 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: 12/11/2019
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.2.6'
+ModuleVersion = '1.2.7'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,11 +53,12 @@ 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Store.dll',
- 'Microsoft.Azure.DataLake.Store.dll', 'NLog.dll', 'System.Buffers.dll'
+ 'Microsoft.Azure.DataLake.Store.dll', 'NLog.dll',
+ 'System.Buffers.dll'
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
@@ -159,7 +160,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Update references in .psd1 to use relative path'
+ ReleaseNotes = '* Added reference to System.Buffers explicitly in csproj and psd1.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/DataLakeStore/DataLakeStore/ChangeLog.md b/src/DataLakeStore/DataLakeStore/ChangeLog.md
index 8390eb4ecabb..36f7827b628d 100644
--- a/src/DataLakeStore/DataLakeStore/ChangeLog.md
+++ b/src/DataLakeStore/DataLakeStore/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.2.7
* Added reference to System.Buffers explicitly in csproj and psd1.
## Version 1.2.6
diff --git a/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs b/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs
index 205281625bed..27f6955dc6a2 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.6")]
-[assembly: AssemblyFileVersion("1.2.6")]
+[assembly: AssemblyVersion("1.2.7")]
+[assembly: AssemblyFileVersion("1.2.7")]
#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 2df85d74fe8d..2c3c52f7a2f1 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 f6a5457620aa..6d1c03bd399e 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 0edf6de8b3b0..8462090f160a 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 0f44c4ff774c..c607ae1c7502 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 2cde8cb45dcc..08b46e1db339 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 d2a441a26a5f..f831d1b4b364 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 31532856a126..b8119e757678 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 3c1c312bfd8c..db6f844415af 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 c1ea44ce119c..160a7c9a752f 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 c81d215e5b17..00338222f04e 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 10714a22a550..fe3070c1301c 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 3876522ce9de..2a2892dc674d 100644
--- a/src/HDInsight/HDInsight/Az.HDInsight.psd1
+++ b/src/HDInsight/HDInsight/Az.HDInsight.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.HDInsight.dll',
diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1
index 69c3d7d1085c..50c32b4f82e9 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 1a17a3525d2e..5a51eb08b809 100644
--- a/src/IotCentral/IotCentral/Az.IotCentral.psd1
+++ b/src/IotCentral/IotCentral/Az.IotCentral.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.IotCentral.dll'
diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1
index 51259669c379..ebe6d0080d90 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: 2/11/2020
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.1.0'
+ModuleVersion = '2.2.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll',
@@ -93,14 +93,14 @@ CmdletsToExport = 'Add-AzIotHubKey', 'Get-AzIotHubEventHubConsumerGroup',
'Test-AzIotHubRoute', 'New-AzIotHubKey',
'Invoke-AzIotHubManualFailover', 'Add-AzIotHubMessageEnrichment',
'Get-AzIotHubMessageEnrichment', 'Remove-AzIotHubMessageEnrichment',
- 'Set-AzIotHubMessageEnrichment', 'Add-AzIotHubDevice',
- 'Get-AzIotHubDevice', 'Remove-AzIotHubDevice',
- 'Set-AzIotHubDevice', 'Add-AzIotHubModule',
- 'Get-AzIotHubModule', 'Remove-AzIotHubModule',
- 'Set-AzIotHubModule', 'Get-AzIotHubDeviceConnectionString',
- 'Get-AzIotHubModuleConnectionString', 'Get-AzIotHubDeviceParent',
- 'Set-AzIotHubDeviceParent', 'Add-AzIotHubDeviceChildren',
+ 'Set-AzIotHubMessageEnrichment', 'Add-AzIotHubDevice',
+ 'Get-AzIotHubDevice', 'Remove-AzIotHubDevice', 'Set-AzIotHubDevice',
+ 'Add-AzIotHubModule', 'Get-AzIotHubModule', 'Remove-AzIotHubModule',
+ 'Set-AzIotHubModule', 'Get-AzIotHubDeviceConnectionString',
+ 'Get-AzIotHubModuleConnectionString', 'Get-AzIotHubDeviceParent',
+ 'Set-AzIotHubDeviceParent', 'Add-AzIotHubDeviceChildren',
'Remove-AzIotHubDeviceChildren', 'Get-AzIotHubDeviceChildren'
+
# Variables to export from this module
# VariablesToExport = @()
@@ -108,7 +108,7 @@ CmdletsToExport = 'Add-AzIotHubKey', 'Get-AzIotHubEventHubConsumerGroup',
AliasesToExport = 'Get-AzIotHubEHCG', 'Add-AzIotHubEHCG', 'Remove-AzIotHubEHCG',
'Set-AzIotHubVC', 'Get-AzIotHubCVC', 'Add-AzIotHubMsgEnrich',
'Get-AzIotHubMsgEnrich', 'Remove-AzIotHubMsgEnrich',
- 'Set-AzIotHubMsgEnrich', 'Get-AzIotHubDCS', 'Get-AzIotHubMCS',
+ 'Set-AzIotHubMsgEnrich', 'Get-AzIotHubDCS', 'Get-AzIotHubMCS',
'Add-AzIotHubDCL', 'Remove-AzIotHubDCL', 'Get-AzIotHubDCL'
# DSC resources to export from this module
@@ -142,7 +142,18 @@ PrivateData = @{
- ''Add-AzIotHubDevice''
- ''Get-AzIotHubDevice''
- ''Remove-AzIotHubDevice''
- - ''Set-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.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md
index b52ebba4877a..5ca653eebed3 100644
--- a/src/IotHub/IotHub/ChangeLog.md
+++ b/src/IotHub/IotHub/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 2.2.0
* Added support to manage devices in an Iot Hub. New Cmdlets are:
- `Add-AzIotHubDevice`
- `Get-AzIotHubDevice`
diff --git a/src/IotHub/IotHub/Properties/AssemblyInfo.cs b/src/IotHub/IotHub/Properties/AssemblyInfo.cs
index fabd9421b847..5c67471f2278 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.1.0")]
-[assembly: AssemblyVersion("2.1.0")]
-[assembly: AssemblyFileVersion("2.1.0")]
+// [assembly: AssemblyVersion("2.2.0")]
+[assembly: AssemblyVersion("2.2.0")]
+[assembly: AssemblyFileVersion("2.2.0")]
diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1
index fd4eda04f8ab..86712dbe55c9 100644
--- a/src/KeyVault/KeyVault/Az.KeyVault.psd1
+++ b/src/KeyVault/KeyVault/Az.KeyVault.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll',
diff --git a/src/Kusto/Kusto/Az.Kusto.psd1 b/src/Kusto/Kusto/Az.Kusto.psd1
index 2624434161dc..d1e5ce8339a1 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 bf59959d40e0..9a5a83eb4253 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 48d29dee3b0e..6c18f97b4fb0 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 f7fcb33fae18..147b47239213 100644
--- a/src/Maintenance/Maintenance/Az.Maintenance.psd1
+++ b/src/Maintenance/Maintenance/Az.Maintenance.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 1/21/2020
+# Generated on: 3/3/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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Maintenance.dll'
@@ -115,8 +115,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Update command will display pending updates by default
-* Added sample output to help documentation of Get-AZMaintenanceUpdate'
+ ReleaseNotes = '* Got ''Az-MaintenanceConfiguration'' will honor filters while listing maintenance configurations'
# Prerelease string of this module
Prerelease = 'preview'
diff --git a/src/Maintenance/Maintenance/ChangeLog.md b/src/Maintenance/Maintenance/ChangeLog.md
index 30df87750024..b47f867663b9 100644
--- a/src/Maintenance/Maintenance/ChangeLog.md
+++ b/src/Maintenance/Maintenance/ChangeLog.md
@@ -19,6 +19,8 @@
-->
## Upcoming Release
+
+## Version 0.1.3
* Got `Az-MaintenanceConfiguration` will honor filters while listing maintenance configurations
## Version 0.1.2
diff --git a/src/Maintenance/Maintenance/Properties/AssemblyInfo.cs b/src/Maintenance/Maintenance/Properties/AssemblyInfo.cs
index 6651e59bf6aa..dc9f3aa3a645 100644
--- a/src/Maintenance/Maintenance/Properties/AssemblyInfo.cs
+++ b/src/Maintenance/Maintenance/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.0")]
-[assembly: AssemblyVersion("0.1.2")]
-[assembly: AssemblyFileVersion("0.1.2")]
+[assembly: AssemblyVersion("0.1.3")]
+[assembly: AssemblyFileVersion("0.1.3")]
diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
index 217df264476d..e3d53b141e25 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 c4b84d8c80c3..368f643deaab 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 ba1b037dd8b9..f8f8cbf18b1f 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 181d0a8c8935..046764f6f36d 100644
--- a/src/Maps/Maps/Az.Maps.psd1
+++ b/src/Maps/Maps/Az.Maps.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Maps.dll'
diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1
index 6458b7470e8d..1f246fa32dc9 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 1a1e115384a5..2559e1a4f668 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 f9be22cf26c6..8ecc11cd2f0e 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 33ef7fe6bc4a..4445ffb486c5 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: 2/11/2020
+# Generated on: 3/4/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.6.0'
+ModuleVersion = '1.6.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Monitor.dll'
@@ -136,9 +136,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed description of the Get-AzLog cmdlet.
-* A new parameter called ActionGroupId was added to ''New-AzMetricAlertRuleV2'' command.
- - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup).'
+ ReleaseNotes = '* Fixed output value for ''Get-AzMetricDefinition'' [#9714]'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md
index ae93eb6ed861..32b2120479d7 100644
--- a/src/Monitor/Monitor/ChangeLog.md
+++ b/src/Monitor/Monitor/ChangeLog.md
@@ -19,6 +19,9 @@
-->
## Upcoming Release
+## Version 1.6.1
+* Fixed output value for `Get-AzMetricDefinition` [#9714]
+
## Version 1.6.0
* Fixed description of the Get-AzLog cmdlet.
* A new parameter called ActionGroupId was added to `New-AzMetricAlertRuleV2` command.
diff --git a/src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs b/src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs
index b155df423e02..9ae16dc5dfba 100644
--- a/src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs
+++ b/src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs
@@ -26,7 +26,7 @@ public class PSMetricDefinition : MetricDefinition
///
/// The MetricDefinition
public PSMetricDefinition(MetricDefinition metricDefinition)
- : base(name: new PSLocalizableString(metricDefinition.Name), metricAvailabilities: new PSMetricAvailabilityCollection(metricDefinition.MetricAvailabilities), primaryAggregationType: metricDefinition.PrimaryAggregationType, resourceId: metricDefinition.ResourceId, unit: metricDefinition.Unit, id: metricDefinition.Id)
+ : base(name: new PSLocalizableString(metricDefinition.Name), metricAvailabilities: new PSMetricAvailabilityCollection(metricDefinition.MetricAvailabilities), primaryAggregationType: metricDefinition.PrimaryAggregationType, resourceId: metricDefinition.ResourceId, unit: metricDefinition.Unit, id: metricDefinition.Id, dimensions: metricDefinition.Dimensions, supportedAggregationTypes: metricDefinition.SupportedAggregationTypes)
{
}
}
diff --git a/src/Monitor/Monitor/Properties/AssemblyInfo.cs b/src/Monitor/Monitor/Properties/AssemblyInfo.cs
index c9e128748364..d6feec294a02 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.0")]
-[assembly: AssemblyFileVersion("1.6.0")]
+[assembly: AssemblyVersion("1.6.1")]
+[assembly: AssemblyFileVersion("1.6.1")]
diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1
index ea94258b1bed..e0166f66899f 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 eb1a1d12108b..3b764aee623a 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: 2/13/2020
+# Generated on: 3/5/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.3.1'
+ModuleVersion = '2.3.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Network.dll',
@@ -509,11 +509,10 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added one extra parameter note for parameter ''-EnableProxyProtocol'' for ''New-AzPrivateLinkService'' cmdlet.
-* Fixed FilterData example in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md.
-* Added Packet Capture example for capture all inner and outer packets in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md.
-* Supported Azure Firewall Policy on VNet Firewalls
- - No new cmdlets are added. Relaxing the restriction for firewall policy on VNet firewalls'
+ 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'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md
index b54497d1e5fe..14d56d13821e 100644
--- a/src/Network/Network/ChangeLog.md
+++ b/src/Network/Network/ChangeLog.md
@@ -20,6 +20,12 @@
## Upcoming Release
+## Version 2.3.2
+* 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`
+
## Version 2.3.1
* Added one extra parameter note for parameter `-EnableProxyProtocol` for `New-AzPrivateLinkService` cmdlet.
* Fixed FilterData example in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md.
@@ -52,8 +58,8 @@
## Version 2.1.0
* Change `Start-AzVirtualNetworkGatewayConnectionPacketCapture.md` and `Start-AzVirtualnetworkGatewayPacketCapture.md` FilterData option examples.
* Add `PrivateRange` parameter to `AzureFirewall`
- - Updated cmdlet:
- - New-AzFirewall
+ - Updated cmdlet:
+ - New-AzFirewall
## Version 2.0.0
* Change all cmdlets for PrivateEndpointConnection to support generic service provider.
diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs
index 21d9d5d75559..037fbe32985c 100644
--- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs
+++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs
@@ -1268,8 +1268,14 @@ private static void Initialize()
cfg.CreateMap();
cfg.CreateMap();
- cfg.CreateMap();
- cfg.CreateMap();
+ cfg.CreateMap().AfterMap((src, dest) =>
+ {
+ dest.ActionsRequired = src.ActionRequired;
+ });
+ cfg.CreateMap().AfterMap((src, dest) =>
+ {
+ dest.ActionRequired = src.ActionsRequired;
+ });
cfg.CreateMap();
cfg.CreateMap();
diff --git a/src/Network/Network/Network.csproj b/src/Network/Network/Network.csproj
index ae4771473d09..e665159f0603 100644
--- a/src/Network/Network/Network.csproj
+++ b/src/Network/Network/Network.csproj
@@ -14,7 +14,7 @@
-
+
diff --git a/src/Network/Network/Properties/AssemblyInfo.cs b/src/Network/Network/Properties/AssemblyInfo.cs
index 669ee03a5fe1..5234a22518de 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.1")]
-[assembly: AssemblyFileVersion("2.3.1")]
+[assembly: AssemblyVersion("2.3.2")]
+[assembly: AssemblyFileVersion("2.3.2")]
#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 0dc917eb03e6..b757db70b43c 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 f87005b41a54..f65f0455b608 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 5bbf0b466dd1..1461a5a53093 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 bad54053794b..1cd96e177746 100644
--- a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1
+++ b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.PolicyInsights.dll'
diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1
index e7d31ad1d0c7..0d424bc9993b 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 2536b1dc398c..e1abae92adbe 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.PrivateDns.dll'
diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
index 975c0287237a..238a2a18adfc 100644
--- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
+++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
@@ -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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll',
diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1
index 8d757ddc0acd..24a970155770 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 78fa63b826b6..094e7e5bdd50 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 bda2e48d6f51..83e11d448add 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 860cdabdc44d..567735dc30d1 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 0e27c23d0712..9e9f725b7afc 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: 2/11/2020
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.11.0'
+ModuleVersion = '1.12.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Authorization.dll',
@@ -185,14 +185,20 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Refactored template deployment cmdlets
- - Added new cmdlets for managing deployments at management group: *-AzManagementGroupDeployment
- - Added new cmdlets for managing deployments at tenant scope: *-AzTenantDeployment
- - Refactored *-AzDeployment cmdlets to work specifically at subscription scope
- - Created aliases *-AzSubscriptionDeployment for *-AzDeployment cmdlets
-* Fixed ''Update-AzADApplication'' when parameter ''AvailableToOtherTenants'' is not set
-* Removed ApplicationObjectWithoutCredentialParameterSet to avoid AmbiguousParameterSetException.
-* Regenerated help files'
+ 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 '
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md
index c0f6ecaebe2a..dc3045ebd2f1 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.12.0
* 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]
diff --git a/src/Resources/Resources/Properties/AssemblyInfo.cs b/src/Resources/Resources/Properties/AssemblyInfo.cs
index 08650f58207e..0cee722ba41b 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.11.0")]
-[assembly: AssemblyFileVersion("1.11.0")]
+[assembly: AssemblyVersion("1.12.0")]
+[assembly: AssemblyFileVersion("1.12.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 8c12634c9548..4d5e6341e2c5 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 36b5ef91d434..662f58af45f1 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 55f2ef24b426..1eb7e380ecbd 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 0c991b5b9c8d..db217611702d 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 8c66cdda908d..15621ca5c4af 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.SignalR.dll'
diff --git a/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs b/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs
index d92049c6dd49..8258c35b0e4d 100644
--- a/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs
@@ -34,7 +34,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con
public AdvancedDataSecurityManagedInstanceTests(ITestOutputHelper output) : base(output)
{
base.resourceTypesToIgnoreApiVersion = new string[] {
- "Microsoft.Sql/managedInstances"
+ "Microsoft.Sql/managedInstances",
+ "Microsoft.Sql/managedInstances/databases"
};
}
diff --git a/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs b/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs
index 2d833b1e68df..778075bf92d7 100644
--- a/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs
@@ -25,7 +25,8 @@ public DataClassificationTests(ITestOutputHelper output) : base(output)
{
base.resourceTypesToIgnoreApiVersion = new string[] {
"Microsoft.Sql/managedInstances",
- "Microsoft.Sql/servers"
+ "Microsoft.Sql/servers",
+ "Microsoft.Sql/managedInstances/databases"
};
}
diff --git a/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs b/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs
index f6c17dfd9061..bccee04301d8 100644
--- a/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs
@@ -27,7 +27,8 @@ public DataSyncTests(ITestOutputHelper output) : base(output)
XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output));
base.resourceTypesToIgnoreApiVersion = new string[] {
- "Microsoft.Sql/servers"
+ "Microsoft.Sql/servers",
+ "Microsoft.Sql/managedInstances/databases"
};
}
@@ -134,6 +135,6 @@ public void TestSyncMemberSchemaRefreshAndGet()
public void TestSyncMemberRemove()
{
RunPowerShellTest("Test-RemoveSyncMember");
- }
+ }
}
}
diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs
index dbfc6790c092..ed24b2f2fb0e 100644
--- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs
@@ -34,7 +34,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con
public ManagedDatabaseBackupTests(ITestOutputHelper output) : base(output)
{
base.resourceTypesToIgnoreApiVersion = new string[] {
- "Microsoft.Sql/managedInstances"
+ "Microsoft.Sql/managedInstances",
+ "Microsoft.Sql/managedInstances/databases"
};
}
@@ -51,5 +52,26 @@ public void ManagedDeletedDatabaseShortTermRetentionPolicy()
{
RunPowerShellTest("Test-ManagedDeletedDatabaseShortTermRetentionPolicy");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestManagedInstanceLongTermRetentionPolicy()
+ {
+ RunPowerShellTest("Test-ManagedInstanceLongTermRetentionPolicy");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestManagedInstanceLongTermRetentionBackup()
+ {
+ RunPowerShellTest("Test-ManagedInstanceLongTermRetentionBackup");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestManagedInstanceLongTermRetentionResourceGroupBasedBackup()
+ {
+ RunPowerShellTest("Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup");
+ }
}
}
diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1
index 400a360840f2..2a50e5ff36be 100644
--- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1
+++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1
@@ -23,7 +23,7 @@ function Test-ManagedLiveDatabaseShortTermRetentionPolicy
$vnetName = "cl_initial"
$subnetName = "Cool"
- # Setup VNET
+ # Setup VNET
$virtualNetwork1 = CreateAndGetVirtualNetworkForManagedInstance $vnetName $subnetName $rg.Location
$subnetId = $virtualNetwork1.Subnets.where({ $_.Name -eq $subnetName })[0].Id
@@ -88,6 +88,10 @@ function Test-ManagedLiveDatabaseShortTermRetentionPolicy
}
}
+<#
+ .SYNOPSIS
+ Test LTR Policy functions for MI
+#>
function Test-ManagedDeletedDatabaseShortTermRetentionPolicy
{
# Setup
@@ -95,7 +99,7 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy
$vnetName = "cl_initial"
$subnetName = "Cool"
- # Setup VNET
+ # Setup VNET
$virtualNetwork1 = CreateAndGetVirtualNetworkForManagedInstance $vnetName $subnetName $rg.Location
$subnetId = $virtualNetwork1.Subnets.where({ $_.Name -eq $subnetName })[0].Id
@@ -130,7 +134,7 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy
Remove-AzSqlInstanceDatabase -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -Name $managedDatabaseName -Force
# Get deleted database
- $deletedDatabases = Get-AzSqlDeletedInstanceDatabaseBackup -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -DatabaseName $managedDatabaseName
+ $deletedDatabases = Get-AzSqlDeletedInstanceDatabaseBackup -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -DatabaseName $managedDatabaseName
# Set retention to 29, test default parameter providing.
$retention = 29
@@ -173,4 +177,143 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy
{
Remove-ResourceGroupForTest $rg
}
-}
\ No newline at end of file
+}
+<#
+ .SYNOPSIS
+ Test long term retention for managed databases.
+#>
+function Test-ManagedInstanceLongTermRetentionPolicy()
+{
+ # Setup
+ $resourceGroupName = "cl_stage_sea_cv"
+ $managedInstanceName = "seageodr-gen5-gp"
+ $weeklyRetention = "P1W"
+ $zeroRetention = "PT0S"
+
+ try
+ {
+ # create test database
+ $databaseName = "ps-ltr-policy-test-1"
+ $database = New-AzSqlInstanceDatabase -ResourceGroupName $resourceGroupName -InstanceName $managedInstanceName -Name $databaseName
+
+ Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName $resourceGroupName -InstanceName $managedInstanceName -DatabaseName $databaseName -WeeklyRetention $weeklyRetention
+ $policy = Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroupName -InstanceName $managedInstanceName -DatabaseName $databaseName
+ Assert-AreEqual $policy.WeeklyRetention $weeklyRetention
+ Assert-AreEqual $policy.MonthlyRetention $zeroRetention
+ Assert-AreEqual $policy.YearlyRetention $zeroRetention
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $resourceGroup
+ }
+}
+
+<#
+ .SYNOPSIS
+ Test long term retention backup commands for managed databases.
+#>
+function Test-ManagedInstanceLongTermRetentionBackup
+{
+
+ # MANUAL INSTRUCTIONS
+ # Create a server and database and fill in the appropriate information below
+ # Set the weekly retention on the database so that the first backup gets picked up, for example:
+ # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W
+ # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example:
+ # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaeName $databaseName
+ $resourceGroup = "cl_stage_sea_cv"
+ $locationName = "southeastasia"
+ $managedInstanceName = "seageodr-gen5-gp"
+ $databaseName = "ps-test-1"
+ $databaseWithRemovableBackup = "ps-test-2";
+
+ # Basic Get Tests
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName
+ Assert-AreNotEqual $backups.Count 0
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName
+ Assert-AreNotEqual $backups.Count 0
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName
+ Assert-AreNotEqual $backups.Count 0
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName
+ Assert-AreNotEqual $backups.Count 0
+
+ # Test Get Optional Parameters
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -OnlyLatestPerDatabase
+ Assert-AreNotEqual $backups.Count 0
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -OnlyLatestPerDatabase -DatabaseState All
+ Assert-AreNotEqual $backups.Count 0
+
+ # Test Get Piping with Optional Parameters
+ $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase
+ Assert-AreNotEqual $backups.Count 0
+
+ # Restore Test
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName
+ $restoredDatabase = "ps-test-restore-2"
+ $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase
+ Assert-AreEqual $db.Name $restoredDatabase
+
+ # Test Remove Backup
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup
+ $initialBackups = $backups.Count
+ Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName -Force
+ $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseWithRemovableBackup | Get-AzSqlInstanceDatabaseLongTermRetentionBackup
+ $expectedBackups = $initialBackups-1
+ Assert-AreEqual $expectedBackups $backups.Count
+
+ # drop the restored db
+ Remove-AzSqlInstanceDatabase -ResourceGroupName $resourceGroup -InstanceName $managedInstanceName -Name $restoredDatabase -Force
+}
+
+<#
+ .SYNOPSIS
+ Test long term retention backup commands for managed databases (using resource group).
+#>
+function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup
+{
+ # MANUAL INSTRUCTIONS
+ # Create a server and database and fill in the appropriate information below
+ # Set the weekly retention on the database so that the first backup gets picked up, for example:
+ # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W
+ # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example:
+ # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ServerName $serverName -DatabaeName $databaseName -ResourceGroupName $resourceGroup
+ $resourceGroup = "cl_stage_sea_cv"
+ $locationName = "southeastasia"
+ $managedInstanceName = "seageodr-gen5-gp"
+ $databaseName = "ps-test-3"
+
+ # Basic Get Tests
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup
+ Assert-AreNotEqual $backups.Count 0
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -ResourceGroupName $resourceGroup
+ Assert-AreNotEqual $backups.Count 0
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -ResourceGroupName $resourceGroup
+ Assert-AreNotEqual $backups.Count 0
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName -ResourceGroupName $resourceGroup
+ Assert-AreNotEqual $backups.Count 0
+
+ # Test Get Piping
+ $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup
+ Assert-AreNotEqual $backups.Count 0
+ $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -BackupName $backups[0].BackupName
+ Assert-AreNotEqual $backups.Count 0
+
+ # Test Get Optional Parameters
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -ResourceGroupName $resourceGroup -OnlyLatestPerDatabase
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -ResourceGroupName $resourceGroup -DatabaseState All
+ Assert-AreNotEqual $backups.Count 0
+
+ # Test Get Piping with Optional Parameters
+ $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase
+ Assert-AreNotEqual $backups.Count 0
+
+ # Restore Test
+ $restoredDatabase = "ps-test-restore-with-rg-2"
+ $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup
+ $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase
+ Assert-AreEqual $db.Name $restoredDatabase
+
+ # drop the restored db
+ Remove-AzSqlInstanceDatabase -ResourceGroupName $resourceGroup -InstanceName $managedInstanceName -Name $restoredDatabase -Force
+}
+
diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs
index 0d18cbc77ecf..87fd8d8169c4 100644
--- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs
@@ -35,7 +35,9 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con
public ManagedDatabaseCrudScenarioTests(ITestOutputHelper output) : base(output)
{
base.resourceTypesToIgnoreApiVersion = new string[] {
- "Microsoft.Sql/managedInstances"
+ "Microsoft.Sql/managedInstances",
+ "Microsoft.Sql/managedInstances/databases",
+ "Microsoft.Sql/managedInstances/managedDatabases"
};
}
@@ -46,21 +48,21 @@ public void TestCreateManagedDatabase()
RunPowerShellTest("Test-CreateManagedDatabase");
}
- [Fact]
+ [Fact(Skip = "Skip due to bug in ignore api version plus long setup time for managed instance")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestGetManagedDatabase()
{
RunPowerShellTest("Test-GetManagedDatabase");
}
- [Fact]
+ [Fact(Skip = "Skip due to long setup time for managed instance")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestRemoveManagedDatabase()
{
RunPowerShellTest("Test-RemoveManagedDatabase");
}
- [Fact]
+ [Fact(Skip = "Skip due to long setup time for managed instance")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestRestoreManagedDatabase()
{
diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.cs
index d0da843ffb4a..454ba16e71d9 100644
--- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.cs
@@ -70,5 +70,12 @@ public void TestCreateManagedInstanceWithIdentity()
{
RunPowerShellTest("Test-CreateManagedInstanceWithIdentity");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestCreateUpdateManagedInstanceWithMinimalTlsVersion()
+ {
+ RunPowerShellTest("Test-CreateUpdateManagedInstanceWithMinimalTlsVersion");
+ }
}
}
diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1
index 1a2be575d16d..bd7900b22385 100644
--- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1
+++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1
@@ -38,6 +38,7 @@ function Test-CreateManagedInstance
$collation = "Serbian_Cyrillic_100_CS_AS"
$timezoneId = "Central Europe Standard Time"
$proxyOverride = "Proxy"
+
try
{
# Setup VNET
@@ -357,4 +358,52 @@ function Test-CreateManagedInstanceWithIdentity
{
Remove-ResourceGroupForTest $rg
}
+}
+
+<#
+ .SYNOPSIS
+ Tests creating a managed instance with MinimalTlsVersion
+ .DESCRIPTION
+ SmokeTest
+#>
+function Test-CreateUpdateManagedInstanceWithMinimalTlsVersion
+{
+ # Setup
+ $location = "eastus2euap"
+ $rgName = "DejanDuVnetRG"
+ $subnetId = "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default"
+ $managedInstanceName = "ps123"
+ $version = "12.0"
+ $credentials = Get-ServerCredential
+ $licenseType = "BasePrice"
+ $storageSizeInGB = 128
+ $vCore = 4
+ $skuName = "GP_Gen5"
+ $collation = "Serbian_Cyrillic_100_CS_AS"
+ $timezoneId = "Central Europe Standard Time"
+ $proxyOverride = "Proxy"
+ $tls1_2 = "1.2"
+ $tls1_1 = "1.1"
+
+ try
+ {
+ # With SKU name specified
+ $job = New-AzSqlInstance -ResourceGroupName $rgName -Name $managedInstanceName `
+ -Location $location -AdministratorCredential $credentials -SubnetId $subnetId `
+ -LicenseType $licenseType -StorageSizeInGB $storageSizeInGB -Vcore $vCore -SkuName $skuName -Collation $collation `
+ -TimezoneId $timezoneId -PublicDataEndpointEnabled -ProxyOverride $proxyOverride -MinimalTlsVersion $tls1_2 -AsJob
+ $job | Wait-Job
+ $managedInstance1 = $job.Output
+
+ Assert-AreEqual $managedInstance1.ManagedInstanceName $managedInstanceName
+ Assert-AreEqual $managedInstance1.MinimalTlsVersion $tls1_2
+
+ $managedInstance2 = Set-AzSqlInstance -MinimalTlsVersion $tls1_1 -ResourceGroupName $rgName -Name "ps123" -Force
+
+ Assert-AreEqual $managedInstance2.MinimalTlsVersion $tls1_1
+ }
+ finally
+ {
+ Remove-AzSqlInstance -ResourceGroupName $rgName -Name $managedInstanceName -Force
+ }
}
\ No newline at end of file
diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.cs b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.cs
index 76827642e58b..c575858c2cdb 100644
--- a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.cs
@@ -88,5 +88,12 @@ public void TestServerUpdateWithPublicNetworkAccess()
{
RunPowerShellTest("Test-UpdateServerWithPublicNetworkAccess");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void CreateandUpdateServerWithMinimalTlsVersion()
+ {
+ RunPowerShellTest("Test-CreateandUpdateServerWithMinimalTlsVersion");
+ }
}
}
diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1
index 8a537610923a..75b2438f9d0d 100644
--- a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1
+++ b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1
@@ -73,7 +73,7 @@ function Test-UpdateServer
Assert-AreEqual $server1.ServerVersion $server.ServerVersion
Assert-AreEqual $server1.SqlAdministratorLogin $server.SqlAdministratorLogin
Assert-StartsWith ($server1.ServerName + ".") $server1.FullyQualifiedDomainName
-
+
# Test piping
$serverPassword = "n3wc00lP@55w0rd!!!"
$secureString = ConvertTo-SecureString $serverPassword -AsPlainText -Force
@@ -255,6 +255,46 @@ function Test-UpdateServerWithoutIdentity
}
}
+<#
+ .SYNOPSIS
+ Tests create and update a server with minimal TLS version
+ .DESCRIPTION
+ SmokeTest
+#>
+function Test-CreateandUpdateServerWithMinimalTlsVersion
+{
+ # Setup
+ $location = "eastus2euap"
+ $rg = Create-ResourceGroupForTest $location
+
+ try
+ {
+ # Test using parameters
+ $serverName = Get-ServerName
+ $version = "12.0"
+ $serverLogin = "testusername"
+ $serverPassword = "t357ingP@s5w0rd!"
+ $credentials = new-object System.Management.Automation.PSCredential($serverLogin, ($serverPassword | ConvertTo-SecureString -asPlainText -Force))
+ $tls1_1 = "1.1"
+ $tls1_2 = "1.2"
+
+ # With all parameters
+ $job = New-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -ServerName $serverName `
+ -Location $rg.Location -ServerVersion $version -SqlAdministratorCredentials $credentials -MinimalTlsVersion $tls1_2 -AsJob
+ $job | Wait-Job
+
+ $server1 = Get-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -ServerName $serverName
+ Assert-AreEqual $server1.MinimalTlsVersion $tls1_2
+
+ $server2 = Set-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -ServerName $serverName -MinimalTlsVersion $tls1_1
+ Assert-AreEqual $server2.MinimalTlsVersion $tls1_1
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $rg
+ }
+}
+
<#
.SYNOPSIS
Tests create server with Enabled/Disabled/null PublicNetworkAccess. Also check get server returns correct PublicNetworkAccess.
diff --git a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs
index fd773e83d108..5c4b2f4a56a7 100644
--- a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs
@@ -34,7 +34,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con
public VulnerabilityAssessmentMiTests(ITestOutputHelper output) : base(output)
{
base.resourceTypesToIgnoreApiVersion = new string[] {
- "Microsoft.Sql/managedInstances"
+ "Microsoft.Sql/managedInstances",
+ "Microsoft.Sql/managedInstances/databases"
};
}
diff --git a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs
index be4c946b6621..31e95c0abc5c 100644
--- a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs
+++ b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs
@@ -33,7 +33,9 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con
public VulnerabilityAssessmentTests(ITestOutputHelper output) : base(output)
{
base.resourceTypesToIgnoreApiVersion = new string[] {
- "Microsoft.Sql/servers"
+ "Microsoft.Sql/servers",
+ "Microsoft.Sql/managedInstances",
+ "Microsoft.Sql/managedInstances/databases"
};
}
@@ -95,4 +97,4 @@ public void VulnerabilityAssessmentScanConvertTest()
#endregion
}
-}
\ No newline at end of file
+}
diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json
new file mode 100644
index 000000000000..58ad81355e35
--- /dev/null
+++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json
@@ -0,0 +1,1937 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d3b2bc4-3c49-415c-b873-18f7d90acc57"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "9e67f48d-4e27-4888-8972-75c637977b51"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "aafa479d-0e7b-4b95-abd1-5f22d96f265c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193627Z:aafa479d-0e7b-4b95-abd1-5f22d96f265c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:27 GMT"
+ ],
+ "Content-Length": [
+ "10541"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1863aaa3-0293-4fb2-86ce-16c0fecdab85"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0d7e0da6-d577-4408-afbe-b73b7b96cd22"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-correlation-request-id": [
+ "37fa1956-30bc-4f9e-a8ad-6adb056a1b65"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193630Z:37fa1956-30bc-4f9e-a8ad-6adb056a1b65"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:30 GMT"
+ ],
+ "Content-Length": [
+ "10541"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5cb9836b-e490-420f-aa95-5f2e24517e10"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d04e20f0-552e-4b69-86e6-513fdc9abde3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "dbdb75c6-5de3-41db-b689-4621592ef56b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193627Z:dbdb75c6-5de3-41db-b689-4621592ef56b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:27 GMT"
+ ],
+ "Content-Length": [
+ "10541"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1f1f1879-e3ce-4c76-b586-4ed378b8379f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f0826be7-ff80-442c-bea7-f7d1c0f2eee5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2bdba37-e90f-4f59-bc57-cb75a999620f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193628Z:c2bdba37-e90f-4f59-bc57-cb75a999620f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:28 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931%3B132277179870000000?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHMvMGNmNmZiYmQtMDA0MC00YTJiLWI5NWQtNTkxZWJhMzU4OTMxJTNCMTMyMjc3MTc5ODcwMDAwMDAwP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5259916c-43fb-470b-ba7d-5e8fb81ed569"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "dfc87066-c3ce-4b89-84d6-2925ae391ff3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ba204b7-8856-4308-bed2-cc7d3428f102"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193628Z:3ba204b7-8856-4308-bed2-cc7d3428f102"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:28 GMT"
+ ],
+ "Content-Length": [
+ "742"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPXRydWUmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0fbc1e5c-d4a8-4f03-b6e3-23cb5a878bc9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1dd4ea71-e8fa-4c67-8696-5f076c9eddf4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "28c87417-d7d7-4875-9c76-8668a0f1f3a5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193628Z:28c87417-d7d7-4875-9c76-8668a0f1f3a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:28 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&databaseState=All&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZkYXRhYmFzZVN0YXRlPUFsbCZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cc8c89b1-9e0a-457d-8a43-c7ee5bf0432b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "06c8035e-55ad-4826-8e3e-6fad52fb1742"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "86bcc537-9a7a-46f5-99f8-c4502f8e4b94"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193629Z:86bcc537-9a7a-46f5-99f8-c4502f8e4b94"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:29 GMT"
+ ],
+ "Content-Length": [
+ "9802"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-1?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3eb446d4-e18e-4b52-8e9f-569782293cf9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6d5bdca9-725e-4ccc-a588-03ea3960e119"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4776bb7-5c1e-45c2-99e5-07214db52ee3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193629Z:b4776bb7-5c1e-45c2-99e5-07214db52ee3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:29 GMT"
+ ],
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:04:06.987Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:06:29.743Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-1\",\r\n \"name\": \"ps-test-1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2ce793f5-50f8-4805-baef-309941501e7e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b13d064e-5b87-40ce-8010-637a9ed4bc39"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c556c73-abe7-472c-af5c-179135079936"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193630Z:7c556c73-abe7-472c-af5c-179135079936"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:29 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "196a90fb-d53c-45e3-949f-efc0864c62bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "35dd4c13-00cc-4442-8232-7aeda3c5dc01"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-correlation-request-id": [
+ "c30d0398-5a98-4f9b-9c7a-29bc1f213c56"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193631Z:c30d0398-5a98-4f9b-9c7a-29bc1f213c56"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:31 GMT"
+ ],
+ "Content-Length": [
+ "873"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"seageodr-gen5-gp.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp\",\r\n \"name\": \"seageodr-gen5-gp\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS0yP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "35beac5c-97c5-4b04-ad8a-972d6db8b36f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "470"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "f58c3fd7-fa3f-44ae-be56-812155ee7cf2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cc05d76-85d1-4829-a178-24d190f529c7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193633Z:1cc05d76-85d1-4829-a178-24d190f529c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:32 GMT"
+ ],
+ "Content-Length": [
+ "94"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "4f0c9f75-feea-4e92-91fc-2003924ebb16"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-correlation-request-id": [
+ "6be84457-71d2-4553-85c1-b61a2fe3cf08"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193648Z:6be84457-71d2-4553-85c1-b61a2fe3cf08"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:36:48 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "2d9cabb9-4248-439b-8052-2e3364b5e530"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14988"
+ ],
+ "x-ms-correlation-request-id": [
+ "2849557b-7f5d-46a6-ab7b-d966f7fd2df0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193704Z:2849557b-7f5d-46a6-ab7b-d966f7fd2df0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:37:03 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "236cc9c5-a829-49a7-9d21-f55ffe747dd6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
+ ],
+ "x-ms-correlation-request-id": [
+ "e626da9f-4d20-46cc-b92d-9ac98659af55"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193719Z:e626da9f-4d20-46cc-b92d-9ac98659af55"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:37:18 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "7f1c2ac3-112f-4bef-9d49-d3950dc0679d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4b340ca-1286-4b2b-a8dd-2c8c08eaffff"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193734Z:a4b340ca-1286-4b2b-a8dd-2c8c08eaffff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:37:34 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "eb489ad5-b0b1-470e-a52e-42644e3fe7c3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef333b67-e438-46d7-a3fc-4a919bd5ff8f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193750Z:ef333b67-e438-46d7-a3fc-4a919bd5ff8f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:37:50 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "ba96c546-2ca6-42cc-8173-df5d6accaa1c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a92631c-c99f-46eb-bb2e-ae90bca3497d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193805Z:5a92631c-c99f-46eb-bb2e-ae90bca3497d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:05 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "88ac18a6-21b3-4ec1-b901-4629fb9da01c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "x-ms-correlation-request-id": [
+ "5035108c-d654-48eb-b9d0-02b20f9185bb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193821Z:5035108c-d654-48eb-b9d0-02b20f9185bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:21 GMT"
+ ],
+ "Content-Length": [
+ "106"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS0yP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ceb2a956-1a50-4d67-a960-99729c7ba86d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-correlation-request-id": [
+ "a686bcef-a105-4e05-a729-0f03dc5d1036"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193821Z:a686bcef-a105-4e05-a729-0f03dc5d1036"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:21 GMT"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:36:34.06Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2\",\r\n \"name\": \"ps-test-restore-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS0yP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d9a1b712-a717-4a6c-9ccc-e47f67a9001c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d60b0035-4769-4f4e-99be-ae32e8357ff9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-correlation-request-id": [
+ "055dc5df-22c6-400b-98fd-f5ae4da0259c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193840Z:055dc5df-22c6-400b-98fd-f5ae4da0259c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:39 GMT"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:36:34.06Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2\",\r\n \"name\": \"ps-test-restore-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMi9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e49affdc-e178-42a3-b2b6-48f7574b7cf3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7c3a4203-2e88-4509-86ec-e1e67b079ba8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3b9d7b5-d562-471e-a0b8-805c45051fda"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193822Z:e3b9d7b5-d562-471e-a0b8-805c45051fda"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:21 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47%3B132277182820000000?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMi9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHMvYTJhMGJkNGEtNWRhYi00OTA3LWEwZjEtNWJjZmU5MDUzZTQ3JTNCMTMyMjc3MTgyODIwMDAwMDAwP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "24db0d2e-d970-467f-b5b9-60781d3bc3b3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "526a9a99-a6e8-4d97-9f5f-25ef01c0655b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e60a198-0b7e-45d6-9534-03761cca51a0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193822Z:9e60a198-0b7e-45d6-9534-03761cca51a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:22 GMT"
+ ],
+ "Content-Length": [
+ "742"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47%3B132277182820000000?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMi9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHMvYTJhMGJkNGEtNWRhYi00OTA3LWEwZjEtNWJjZmU5MDUzZTQ3JTNCMTMyMjc3MTgyODIwMDAwMDAwP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6281b72d-ad65-4bb4-9f93-101ad57a4c3a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/1d23ecc2-3d38-419e-b02d-b859083ba00d?api-version=2018-06-01-preview"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/1d23ecc2-3d38-419e-b02d-b859083ba00d?api-version=2018-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "1d23ecc2-3d38-419e-b02d-b859083ba00d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "63512286-aeb0-4b28-930a-e4c304c699c2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193822Z:63512286-aeb0-4b28-930a-e4c304c699c2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:22 GMT"
+ ],
+ "Content-Length": [
+ "70"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"DeleteLTRBackup\",\r\n \"startTime\": \"2020-03-04T19:38:22.743Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/1d23ecc2-3d38-419e-b02d-b859083ba00d?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwQXp1cmVBc3luY09wZXJhdGlvbi8xZDIzZWNjMi0zZDM4LTQxOWUtYjAyZC1iODU5MDgzYmEwMGQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "c4d9dc89-5747-4aab-b230-a00ff8c502b7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14979"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb407d5d-f934-45dd-bbad-46135d40e5de"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193838Z:bb407d5d-f934-45dd-bbad-46135d40e5de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:38 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"1d23ecc2-3d38-419e-b02d-b859083ba00d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:38:22.743Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/1d23ecc2-3d38-419e-b02d-b859083ba00d?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwT3BlcmF0aW9uUmVzdWx0cy8xZDIzZWNjMi0zZDM4LTQxOWUtYjAyZC1iODU5MDgzYmEwMGQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e6a4a52c-9289-4803-b2c7-0fc92469c85c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-correlation-request-id": [
+ "d936fbb5-7700-4e90-b4da-4853a4b0df3f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193839Z:d936fbb5-7700-4e90-b4da-4853a4b0df3f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c3abf6ea-40f0-4906-ba2f-04dba2b55dd4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "41a1c1b1-d733-471f-a7c8-6fda0759f6d3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2f73603-3ba9-4810-870a-347d0a8f91af"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193839Z:e2f73603-3ba9-4810-870a-347d0a8f91af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:39 GMT"
+ ],
+ "Content-Length": [
+ "471"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:09:56.2Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:11:24.56Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-2\",\r\n \"name\": \"ps-test-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTIvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4bea662e-fe39-4e80-8ea5-2e33e6be3467"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "272f540b-ebc9-41d6-a713-57c713aae3d1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "337c8ac2-909d-4ff4-a01b-aceb8599c178"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193839Z:337c8ac2-909d-4ff4-a01b-aceb8599c178"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:39 GMT"
+ ],
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS0yP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b724fb3-2302-4a5b-8ceb-138cfcc76ce7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "648619f7-20a1-4159-a609-368ac888ea50"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8f9bfee-f0bd-4eef-80ab-763f784afd61"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193840Z:c8f9bfee-f0bd-4eef-80ab-763f784afd61"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:40 GMT"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-04T19:38:40.543Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNjQ4NjE5ZjctMjBhMS00MTU5LWE2MDktMzY4YWM4ODhlYTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "8ee37258-b3f0-43a6-ad0e-4d2bb0dd536e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "748155b9-8b64-4a42-af27-bc2701e12193"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193856Z:748155b9-8b64-4a42-af27-bc2701e12193"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:38:55 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"648619f7-20a1-4159-a609-368ac888ea50\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:38:40.543Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNjQ4NjE5ZjctMjBhMS00MTU5LWE2MDktMzY4YWM4ODhlYTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "cf9db10f-fed9-48ed-8008-4ca6148c605b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfa10d35-e59d-4af7-a8a2-4be6ce6ae2a6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193912Z:bfa10d35-e59d-4af7-a8a2-4be6ce6ae2a6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:11 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"648619f7-20a1-4159-a609-368ac888ea50\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:38:40.543Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvNjQ4NjE5ZjctMjBhMS00MTU5LWE2MDktMzY4YWM4ODhlYTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4d717a15-bfa6-4803-8928-c09c9c16650b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "b133f4bf-bef7-4f47-9bc6-fbf8c3c78d93"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193912Z:b133f4bf-bef7-4f47-9bc6-fbf8c3c78d93"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:11 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b"
+ }
+}
\ No newline at end of file
diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json
new file mode 100644
index 000000000000..3b9c51f040f5
--- /dev/null
+++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json
@@ -0,0 +1,827 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e049b200-643a-4336-92f0-956311b1b7e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "06f30a3b-f1dd-4c3e-af49-2ebb8b7097b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "06f30a3b-f1dd-4c3e-af49-2ebb8b7097b7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191639Z:06f30a3b-f1dd-4c3e-af49-2ebb8b7097b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:16:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "197"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1' under resource group 'cl_stage_sea_cv' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "732665ff-ada0-45ae-8a59-1d82148d5dbc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "bede4fd9-87ff-4e9b-84ee-74f19086b690"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191715Z:bede4fd9-87ff-4e9b-84ee-74f19086b690"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:17:14 GMT"
+ ],
+ "Content-Length": [
+ "446"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:16:44.263Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1\",\r\n \"name\": \"ps-ltr-policy-test-1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d4850dc5-1966-4e57-a256-2418b68c9013"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "69997fc0-b685-4845-b976-f4e13e409f99"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "30ea4aaf-6ce4-4d77-b12e-dee0a24cb598"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191640Z:30ea4aaf-6ce4-4d77-b12e-dee0a24cb598"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:16:40 GMT"
+ ],
+ "Content-Length": [
+ "873"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"seageodr-gen5-gp.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp\",\r\n \"name\": \"seageodr-gen5-gp\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "950ca21d-d61e-4585-910b-705763089359"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "35"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/a5d58d95-42f3-495c-bb08-1c7cf947facd?api-version=2019-06-01-preview"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/a5d58d95-42f3-495c-bb08-1c7cf947facd?api-version=2019-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "a5d58d95-42f3-495c-bb08-1c7cf947facd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6fe47ac-89bd-4f63-a71a-187bf68cf89e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191644Z:f6fe47ac-89bd-4f63-a71a-187bf68cf89e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:16:43 GMT"
+ ],
+ "Content-Length": [
+ "76"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateManagedDatabase\",\r\n \"startTime\": \"2020-03-04T19:16:43.983Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/a5d58d95-42f3-495c-bb08-1c7cf947facd?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVkNThkOTUtNDJmMy00OTVjLWJiMDgtMWM3Y2Y5NDdmYWNkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "23612cb5-4c2e-443a-a319-2700bb78ec39"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "be99518c-f2fb-4ec0-870d-bbcfae5e05ce"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191659Z:be99518c-f2fb-4ec0-870d-bbcfae5e05ce"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:16:59 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"a5d58d95-42f3-495c-bb08-1c7cf947facd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:16:43.983Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/a5d58d95-42f3-495c-bb08-1c7cf947facd?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVkNThkOTUtNDJmMy00OTVjLWJiMDgtMWM3Y2Y5NDdmYWNkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "b061a063-a496-450a-882e-1cdcd59aaf33"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fbd05ce-b723-44bf-a52a-8044e1988446"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191714Z:3fbd05ce-b723-44bf-a52a-8044e1988446"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:17:14 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"a5d58d95-42f3-495c-bb08-1c7cf947facd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:16:43.983Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xL2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e0632be1-1a87-4d4c-9117-1ff69219825f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "eab10148-4dc8-4e23-afff-8af1efd465e0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d815f61-4f5a-4081-a293-efbcde341fe5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191715Z:1d815f61-4f5a-4081-a293-efbcde341fe5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:17:14 GMT"
+ ],
+ "Content-Length": [
+ "423"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"PT0S\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xL2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a4a548fc-15df-447c-8556-482a5c8c6bf9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-correlation-request-id": [
+ "98a560ac-333b-490f-b9e0-3a76f14447bf"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191803Z:98a560ac-333b-490f-b9e0-3a76f14447bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:18:02 GMT"
+ ],
+ "Content-Length": [
+ "422"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xL2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f35cbb1-f67d-4a02-b63b-f4ae10f85dee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c25ac84e-2082-4448-a179-2eea6832a68b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-correlation-request-id": [
+ "2544eec2-5b74-4095-a5a6-8958732baab8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191803Z:2544eec2-5b74-4095-a5a6-8958732baab8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:18:02 GMT"
+ ],
+ "Content-Length": [
+ "422"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xL2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"weekOfYear\": 0\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "259caad9-f291-48c2-ac69-da3cc711e201"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "80"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "fa30e18a-ab3b-499a-902a-c6f59e8f10e5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "67d26423-ebd2-4ce8-ab19-1e8f1ddaa305"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191716Z:67d26423-ebd2-4ce8-ab19-1e8f1ddaa305"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:17:16 GMT"
+ ],
+ "Content-Length": [
+ "91"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"UpsertDatabaseBackupArchivalPolicyV2\",\r\n \"startTime\": \"2020-03-04T19:17:16.073Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vZmEzMGUxOGEtYWIzYi00OTlhLTkwMmEtYzZmNTllOGYxMGU1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "ce33f8e0-b260-48dc-9204-e9bf712eec4a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "47373787-c3da-48a7-8491-5327770c86b5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191731Z:47373787-c3da-48a7-8491-5327770c86b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:17:31 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"fa30e18a-ab3b-499a-902a-c6f59e8f10e5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:17:16.073Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vZmEzMGUxOGEtYWIzYi00OTlhLTkwMmEtYzZmNTllOGYxMGU1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "a49a58c8-eb27-43dc-bce7-8ccac1ae4bd6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "b04d670d-737d-46b3-b306-cf37d0f27751"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191747Z:b04d670d-737d-46b3-b306-cf37d0f27751"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:17:47 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"fa30e18a-ab3b-499a-902a-c6f59e8f10e5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:17:16.073Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vZmEzMGUxOGEtYWIzYi00OTlhLTkwMmEtYzZmNTllOGYxMGU1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "f741c666-fec3-4806-a861-31392d71cb42"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-correlation-request-id": [
+ "74cb7d85-865f-49d6-b6fe-ae42f43110e2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T191802Z:74cb7d85-865f-49d6-b6fe-ae42f43110e2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:18:02 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"fa30e18a-ab3b-499a-902a-c6f59e8f10e5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:17:16.073Z\"\r\n}",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b"
+ }
+}
\ No newline at end of file
diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json
new file mode 100644
index 000000000000..7b07154d2a82
--- /dev/null
+++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json
@@ -0,0 +1,1751 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cee96e63-05dd-4c99-9f23-08f55729f37c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "383d731e-ad86-4c38-bb66-c580ef03cb3b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "cff22b3c-1b76-403d-9437-1ef70f735287"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193925Z:cff22b3c-1b76-403d-9437-1ef70f735287"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:24 GMT"
+ ],
+ "Content-Length": [
+ "12900"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ee76853e-3301-4e45-b865-28c426ca2da7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f1a1f3f3-62bd-4449-afb5-71ac9212f2ca"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
+ ],
+ "x-ms-correlation-request-id": [
+ "542f7c67-073e-4076-b25f-9f5b84646221"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193929Z:542f7c67-073e-4076-b25f-9f5b84646221"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:28 GMT"
+ ],
+ "Content-Length": [
+ "12900"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54ee8f2b-f90c-4253-9297-0a35bc584d15"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6c3bf7d3-a2de-4eea-870c-5eae697ad83f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e7c933e-e056-43e8-89a5-f2dcb79ba8ab"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193925Z:5e7c933e-e056-43e8-89a5-f2dcb79ba8ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:25 GMT"
+ ],
+ "Content-Length": [
+ "12900"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff27a4b3-7fa3-45a4-9429-918a09736c11"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0876cd22-3972-4736-a7e3-0266e09801f7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "e18418aa-e01f-4fd7-b485-990fa39625fe"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193926Z:e18418aa-e01f-4fd7-b485-990fa39625fe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:25 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "acbbec82-5487-4a16-8520-d90fc8af2200"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f179c285-fcf6-4f14-9dec-facf126087b0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e24c610-b2a6-4161-9ad2-9cfb08473ad4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193927Z:3e24c610-b2a6-4161-9ad2-9cfb08473ad4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:26 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911%3B132277182840000000?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzL2YxYTQ2MjViLTVmZmMtNDBmNy1hZDE2LWI0ZDI0YmM3ZTkxMSUzQjEzMjI3NzE4Mjg0MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0d068382-939d-42cd-9f36-efd8b60af6da"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2ed76380-404b-490e-9119-c678fcfcf05e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-correlation-request-id": [
+ "64c03578-d7a5-4400-b84d-7901cecd70b5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193926Z:64c03578-d7a5-4400-b84d-7901cecd70b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:25 GMT"
+ ],
+ "Content-Length": [
+ "742"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911%3B132277182840000000?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzL2YxYTQ2MjViLTVmZmMtNDBmNy1hZDE2LWI0ZDI0YmM3ZTkxMSUzQjEzMjI3NzE4Mjg0MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "abdb7cc8-6294-4ae5-ba4c-591975665306"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cfc87e7a-aa10-4a31-97a6-0982b7ffc19f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "27cd7a82-c732-493e-b766-239e0ce65e38"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193927Z:27cd7a82-c732-493e-b766-239e0ce65e38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:27 GMT"
+ ],
+ "Content-Length": [
+ "742"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e040e38a-c180-45ce-bf2c-ffed882de461"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4627b8bf-e1f0-451c-b37e-ad55d593b427"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "d98d5bf2-5026-44a7-8cfd-5b60f92efd3e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193926Z:d98d5bf2-5026-44a7-8cfd-5b60f92efd3e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:26 GMT"
+ ],
+ "Content-Length": [
+ "473"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:10:40.88Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:11:25.687Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3\",\r\n \"name\": \"ps-test-3\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7b66fae1-653b-42bf-89dc-e6bcf0cd916f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1f493e66-e797-41e0-a151-9b4d6ec25a1f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f42af5f-3ba0-46ad-9746-a099355e91d6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193927Z:5f42af5f-3ba0-46ad-9746-a099355e91d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:26 GMT"
+ ],
+ "Content-Length": [
+ "473"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:10:40.88Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:11:25.687Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3\",\r\n \"name\": \"ps-test-3\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf1e4fe-1e5c-4aa2-834b-bc03d5fa27fc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e462f088-3008-4de8-ba0f-af9512d7fa7c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-correlation-request-id": [
+ "df21c32a-6027-4f61-b5c2-f2cdec516144"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193928Z:df21c32a-6027-4f61-b5c2-f2cdec516144"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:28 GMT"
+ ],
+ "Content-Length": [
+ "473"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:10:40.88Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:11:25.687Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3\",\r\n \"name\": \"ps-test-3\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "42a50abf-9322-42f1-b717-99376d208c1f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "35183b95-29dd-42e3-a285-3a667916d737"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-correlation-request-id": [
+ "d889e99f-fb56-4346-bac2-a73556e8ff55"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193928Z:d889e99f-fb56-4346-bac2-a73556e8ff55"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:27 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39251949-74c5-4380-ba71-ff8f82c9b952"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "daeeb4ce-ca0d-4c55-9a37-f13626bb4b29"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14988"
+ ],
+ "x-ms-correlation-request-id": [
+ "b013d6b3-b37a-4905-ac7f-602219de1b34"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193929Z:b013d6b3-b37a-4905-ac7f-602219de1b34"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:28 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&databaseState=All&api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmRhdGFiYXNlU3RhdGU9QWxsJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa4f28bd-bd37-4d73-9fbd-cb072d839c78"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e8be15cc-72c1-4f02-93c5-ecc849e07bf6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-correlation-request-id": [
+ "274e5f08-801c-4a31-96eb-faa0adfa4209"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193928Z:274e5f08-801c-4a31-96eb-faa0adfa4209"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:27 GMT"
+ ],
+ "Content-Length": [
+ "12900"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "537bd7e3-8119-4530-90f0-05b66e1cce87"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1b065cab-b4c0-47c2-a5cf-eba6245ae89b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
+ ],
+ "x-ms-correlation-request-id": [
+ "d35733d3-62b7-4427-bbfd-c44aa174b99a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193930Z:d35733d3-62b7-4427-bbfd-c44aa174b99a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:30 GMT"
+ ],
+ "Content-Length": [
+ "873"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"seageodr-gen5-gp.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp\",\r\n \"name\": \"seageodr-gen5-gp\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dc1083e6-8447-4051-98ff-cb158e9d7f09"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "504"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "f5fd46b0-f369-4337-8ed6-039d1eef0bd6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "b338eeff-6067-4098-becb-12960b55f7eb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193933Z:b338eeff-6067-4098-becb-12960b55f7eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:33 GMT"
+ ],
+ "Content-Length": [
+ "95"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "e0b7e327-13a7-43f8-b277-192027eda893"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-correlation-request-id": [
+ "4435b5ed-3183-48c4-b92b-036b3c42466d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T193948Z:4435b5ed-3183-48c4-b92b-036b3c42466d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:39:48 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "3bd7aceb-2917-4459-9f3b-622d39567ec1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-correlation-request-id": [
+ "837bde27-2591-48e8-a835-2c1249ca4a28"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194003Z:837bde27-2591-48e8-a835-2c1249ca4a28"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:40:03 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "44bee10c-cc59-4867-bf10-8039db7cefc7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c3d9466-d754-4596-8d16-c06fb3ee4807"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194019Z:3c3d9466-d754-4596-8d16-c06fb3ee4807"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:40:19 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "8947e09b-c2a1-47ec-8f7f-cb8b11e09037"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c52e3c4-206e-4c92-b4e0-e75cba1cf974"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194034Z:2c52e3c4-206e-4c92-b4e0-e75cba1cf974"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:40:34 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "ba5483e6-b814-4817-8559-b7486bdd6d12"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-correlation-request-id": [
+ "30ef15a9-d159-4b8b-bb9e-726ed00ef93c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194050Z:30ef15a9-d159-4b8b-bb9e-726ed00ef93c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:40:49 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "288a4e1e-239c-4c30-a713-9033d9974342"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a72571d-b0e7-406a-b854-1dc2030cb8dc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194105Z:2a72571d-b0e7-406a-b854-1dc2030cb8dc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:41:04 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "49538079-c87d-40b7-a98b-bf272c074b69"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14979"
+ ],
+ "x-ms-correlation-request-id": [
+ "60164cc6-21f4-4d38-b05d-d73bdfd10652"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194120Z:60164cc6-21f4-4d38-b05d-d73bdfd10652"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:41:20 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "6dfd5335-889d-47b0-8c8c-cca2fcadbaac"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "00efff83-130f-479e-b1e6-8d902446d7df"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194136Z:00efff83-130f-479e-b1e6-8d902446d7df"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:41:36 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a8ebade9-52c3-40b0-9ce8-180bb77b5b80"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "2344071f-a023-430d-9d2d-249429598e67"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194137Z:2344071f-a023-430d-9d2d-249429598e67"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:41:36 GMT"
+ ],
+ "Content-Length": [
+ "454"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:39:33.2Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2\",\r\n \"name\": \"ps-test-restore-with-rg-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03b61db4-5a18-40ca-9126-f207417bf7db"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "97dc9fd9-02f3-4871-9c37-f958a1a0207a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "12a2b2dd-6fdf-4404-b13f-aaa93c537b7f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194137Z:12a2b2dd-6fdf-4404-b13f-aaa93c537b7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:41:37 GMT"
+ ],
+ "Content-Length": [
+ "454"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:39:33.2Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2\",\r\n \"name\": \"ps-test-restore-with-rg-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5fd6dfb9-5946-4f7a-abcd-bfbe14cefc70"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/7fc26cea-e820-4138-9e90-383226abd968?api-version=2019-06-01-preview"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/7fc26cea-e820-4138-9e90-383226abd968?api-version=2019-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "7fc26cea-e820-4138-9e90-383226abd968"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f0898ef-ee92-4cfd-bfa4-6943bfaf410a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194137Z:9f0898ef-ee92-4cfd-bfa4-6943bfaf410a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:41:37 GMT"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-04T19:41:37.713Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/7fc26cea-e820-4138-9e90-383226abd968?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vN2ZjMjZjZWEtZTgyMC00MTM4LTllOTAtMzgzMjI2YWJkOTY4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "126b9320-d9e8-40e2-b843-5021191fda32"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b74225c-6fa8-42f4-911b-e23d11f2d8f8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194153Z:5b74225c-6fa8-42f4-911b-e23d11f2d8f8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:41:52 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"7fc26cea-e820-4138-9e90-383226abd968\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:41:37.713Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/7fc26cea-e820-4138-9e90-383226abd968?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvN2ZjMjZjZWEtZTgyMC00MTM4LTllOTAtMzgzMjI2YWJkOTY4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.14393.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "92953517-9bd0-40f7-8862-901ea949b7e5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa24db95-5ef7-491d-9ef3-d55349cf4647"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHEUROPE:20200304T194153Z:aa24db95-5ef7-491d-9ef3-d55349cf4647"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 19:41:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b"
+ }
+}
\ No newline at end of file
diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceCrudScenarioTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceCrudScenarioTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json
new file mode 100644
index 000000000000..f591e35890ed
--- /dev/null
+++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceCrudScenarioTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json
@@ -0,0 +1,953 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dcde42c0-8f33-4fbb-866c-f732c04f2c74"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "0a6d9a70-0dfc-4a2f-a006-81be49cdd379"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a6d9a70-0dfc-4a2f-a006-81be49cdd379"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223614Z:0a6d9a70-0dfc-4a2f-a006-81be49cdd379"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:36:14 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "153"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps123' under resource group 'DejanDuVnetRG' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2f014e6f-2442-442d-8ddd-26499bd1605d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "160ce1a3-b1d3-4cd7-b9b9-eca04ae7c2e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223917Z:160ce1a3-b1d3-4cd7-b9b9-eca04ae7c2e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:39:16 GMT"
+ ],
+ "Content-Length": [
+ "847"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aaefb538-25bc-4af5-a2ab-ccda702b7bc6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "47f2ff78-8d96-4ef3-86c9-08a0c73132c4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "712fb336-2d14-465a-bf3a-3b1f92bb8940"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223917Z:712fb336-2d14-465a-bf3a-3b1f92bb8940"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:39:17 GMT"
+ ],
+ "Content-Length": [
+ "847"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2f3daebe-bae8-4c8d-80db-f0fbe8d883f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8e7e204f-d290-41cb-ac9b-1d0b365a4bd9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "44905bc2-c6ac-4af6-bf9b-43995f9a60e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223917Z:44905bc2-c6ac-4af6-bf9b-43995f9a60e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:39:17 GMT"
+ ],
+ "Content-Length": [
+ "847"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bab6e522-7da7-47f1-854a-10c82c628657"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "7381623c-702e-46a9-9ba8-6f34f0c2b5c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T224018Z:7381623c-702e-46a9-9ba8-6f34f0c2b5c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:40:18 GMT"
+ ],
+ "Content-Length": [
+ "853"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.1\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "144c26d1-c554-43e1-aa33-d230174449a4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "58317732-5e0f-451c-a7cd-709884990403"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b776b54-819b-4d94-aa0a-e01f13755df3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T224018Z:0b776b54-819b-4d94-aa0a-e01f13755df3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:40:18 GMT"
+ ],
+ "Content-Length": [
+ "853"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.1\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e4c8b78f-6a3b-4cc5-bb46-27fc3f520d95"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "651"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceOperationResults/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "65bb3c7b-a7a2-4832-a970-394b5f520d58"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad751338-e271-46fe-ba56-44e6086e489d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223616Z:ad751338-e271-46fe-ba56-44e6086e489d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:36:15 GMT"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2020-03-03T22:36:16.103Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"storageSizeInGB\": 128,\r\n \"minimalTlsVersion\": \"1.1\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7d42399-283c-4726-84ef-9b1df70606a6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "191"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceOperationResults/069dd799-8903-4707-8131-b234a8acca54?api-version=2018-06-01-preview"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/069dd799-8903-4707-8131-b234a8acca54?api-version=2018-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "069dd799-8903-4707-8131-b234a8acca54"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1fb027a-17e9-4c95-aaed-333f173d5375"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223918Z:f1fb027a-17e9-4c95-aaed-333f173d5375"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:39:17 GMT"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2020-03-03T22:39:18.133Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNjViYjNjN2ItYTdhMi00ODMyLWE5NzAtMzk0YjVmNTIwZDU4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "x-ms-request-id": [
+ "00eef2df-b1b9-4d8b-9751-0c5a0238de3a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "b731c34b-2ae7-4b22-9d8e-7ba8d5686710"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223716Z:b731c34b-2ae7-4b22-9d8e-7ba8d5686710"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:37:16 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"65bb3c7b-a7a2-4832-a970-394b5f520d58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T22:36:16.103Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNjViYjNjN2ItYTdhMi00ODMyLWE5NzAtMzk0YjVmNTIwZDU4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "x-ms-request-id": [
+ "6e08853b-8cf9-4065-bed9-eb1c2066a9b3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "711ff4c4-3d3b-4e3c-98ce-9f9fbe8476e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223817Z:711ff4c4-3d3b-4e3c-98ce-9f9fbe8476e9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:38:16 GMT"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"65bb3c7b-a7a2-4832-a970-394b5f520d58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T22:36:16.103Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNjViYjNjN2ItYTdhMi00ODMyLWE5NzAtMzk0YjVmNTIwZDU4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "x-ms-request-id": [
+ "8e88c3e1-7700-4997-8401-bd8bf5c48445"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "5570a758-b4a6-48a8-9692-8e69d3844bde"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T223917Z:5570a758-b4a6-48a8-9692-8e69d3844bde"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:39:16 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"65bb3c7b-a7a2-4832-a970-394b5f520d58\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T22:36:16.103Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/069dd799-8903-4707-8131-b234a8acca54?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vMDY5ZGQ3OTktODkwMy00NzA3LTgxMzEtYjIzNGE4YWNjYTU0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "x-ms-request-id": [
+ "41ba81d6-2e56-4f53-bf87-c36553eda1ed"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "98c8afb2-0781-4057-9ee0-f636630b2efb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T224018Z:98c8afb2-0781-4057-9ee0-f636630b2efb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:40:18 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"069dd799-8903-4707-8131-b234a8acca54\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T22:39:18.133Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a94d01e-3377-40ac-99aa-2e614d56ce2e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceOperationResults/e947d54e-ef19-478e-9bd2-fbc38d6dee32?api-version=2018-06-01-preview"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/e947d54e-ef19-478e-9bd2-fbc38d6dee32?api-version=2018-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "e947d54e-ef19-478e-9bd2-fbc38d6dee32"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "d157af94-5f07-4618-b607-9fc49f22b244"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T224019Z:d157af94-5f07-4618-b607-9fc49f22b244"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:40:19 GMT"
+ ],
+ "Content-Length": [
+ "72"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"DropManagedServer\",\r\n \"startTime\": \"2020-03-03T22:40:19.043Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/e947d54e-ef19-478e-9bd2-fbc38d6dee32?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTk0N2Q1NGUtZWYxOS00NzhlLTliZDItZmJjMzhkNmRlZTMyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "94f56f80-60c8-4b66-af10-75c2b71f1712"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "57ebaf3f-19fc-4ea8-b74b-7d7815cea9fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T224034Z:57ebaf3f-19fc-4ea8-b74b-7d7815cea9fc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:40:34 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"e947d54e-ef19-478e-9bd2-fbc38d6dee32\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T22:40:19.043Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceOperationResults/e947d54e-ef19-478e-9bd2-fbc38d6dee32?api-version=2018-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZU9wZXJhdGlvblJlc3VsdHMvZTk0N2Q1NGUtZWYxOS00NzhlLTliZDItZmJjMzhkNmRlZTMyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d673676e-b544-4d98-a219-e3846618fae3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "5dbd4eff-3704-49f1-b26f-92f47b271658"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T224034Z:5dbd4eff-3704-49f1-b26f-92f47b271658"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 22:40:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "a8c9a924-06c0-4bde-9788-e7b1370969e1"
+ }
+}
\ No newline at end of file
diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/CreateandUpdateServerWithMinimalTlsVersion.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/CreateandUpdateServerWithMinimalTlsVersion.json
new file mode 100644
index 000000000000..4504f4dbe26c
--- /dev/null
+++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/CreateandUpdateServerWithMinimalTlsVersion.json
@@ -0,0 +1,1465 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/ps3596?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3BzMzU5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d7458c7c-8368-4ee4-bf91-4968d31e0db8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "33"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "cb9ec918-c037-4641-9f3c-3268c5ee206e"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb9ec918-c037-4641-9f3c-3268c5ee206e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200633Z:cb9ec918-c037-4641-9f3c-3268c5ee206e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:06:32 GMT"
+ ],
+ "Content-Length": [
+ "170"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596\",\r\n \"name\": \"ps3596\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "81a3a254-dcc9-4c4b-b2ad-0340fdd09ed3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "bde20972-e13b-4e34-b4e9-8bc009ce3487"
+ ],
+ "x-ms-correlation-request-id": [
+ "bde20972-e13b-4e34-b4e9-8bc009ce3487"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200633Z:bde20972-e13b-4e34-b4e9-8bc009ce3487"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:06:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "138"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7247' under resource group 'ps3596' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5da088e9-2af4-457e-9c48-f383ad2dd20e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "14f35d70-176f-4043-9eb3-4f5de7decdfe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200722Z:14f35d70-176f-4043-9eb3-4f5de7decdfe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:21 GMT"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7247.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247\",\r\n \"name\": \"ps7247\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7cbb0423-33e6-40ba-9ee4-598a4e289438"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "44072a9c-7085-440d-8443-46e0d0fecdf1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "c564df8a-0d95-4b87-817a-dd43fdb86460"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200722Z:c564df8a-0d95-4b87-817a-dd43fdb86460"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:21 GMT"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7247.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247\",\r\n \"name\": \"ps7247\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "970e0b44-6481-47d0-bb13-516145cf71cb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "93ad9db8-f684-4533-a4f2-e079494023fd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "2065a5b7-32b5-4bdb-a6cc-eedc9d217428"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200722Z:2065a5b7-32b5-4bdb-a6cc-eedc9d217428"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:22 GMT"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7247.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247\",\r\n \"name\": \"ps7247\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cee7f1c6-acef-4628-9e47-1ca49a9f7f89"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9c1eeb0-d5d0-4fab-82a2-4e15fefe6816"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200724Z:f9c1eeb0-d5d0-4fab-82a2-4e15fefe6816"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:24 GMT"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7247.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247\",\r\n \"name\": \"ps7247\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"version\": \"12.0\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9736fa2c-3c9b-4b1c-ad19-75e4501cd163"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "212"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverOperationResults/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "39d36dca-2810-4277-af8d-ebfff88fbce4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "dfec78dd-a7c5-432a-bd35-12f0e1de4ab4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200636Z:dfec78dd-a7c5-432a-bd35-12f0e1de4ab4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:06:36 GMT"
+ ],
+ "Content-Length": [
+ "73"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"minimalTlsVersion\": \"1.1\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8f09d538-0286-4465-b3f7-212f469eda3b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "90"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverOperationResults/744fe371-1f73-4d8e-a28c-1fb00c9db412?api-version=2019-06-01-preview"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/744fe371-1f73-4d8e-a28c-1fb00c9db412?api-version=2019-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "744fe371-1f73-4d8e-a28c-1fb00c9db412"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "71518eac-beab-49b2-9cf4-f164e68fce0b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200723Z:71518eac-beab-49b2-9cf4-f164e68fce0b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:22 GMT"
+ ],
+ "Content-Length": [
+ "73"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-03-03T20:07:23.23Z\"\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "x-ms-request-id": [
+ "8938dda9-b7ef-4c7b-a3bd-82c9d7a33ea8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "06d488b6-26d2-4aa1-b5db-5197a0b538db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200637Z:06d488b6-26d2-4aa1-b5db-5197a0b538db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:06:37 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "x-ms-request-id": [
+ "0c21aa76-b844-41bd-8575-e29b3f63bc0e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed1595f9-945c-4fc1-b2c0-71fd79e4e07a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200638Z:ed1595f9-945c-4fc1-b2c0-71fd79e4e07a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:06:38 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "x-ms-request-id": [
+ "9724f84e-785d-4141-ae6c-22ed9c5b3a12"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "d27fff86-8533-4875-ae85-978d3df2f785"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200639Z:d27fff86-8533-4875-ae85-978d3df2f785"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:06:39 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "x-ms-request-id": [
+ "593a4f3a-fa2a-4bc4-ac2c-bb1340d19ebc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfd373ff-c81b-4d48-8eac-d55b7598a7b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200640Z:bfd373ff-c81b-4d48-8eac-d55b7598a7b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:06:40 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "6354d888-0eb6-430d-b965-e63c5bacbef9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "1621c22e-90f7-48c9-bf6d-d20a7a861756"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200642Z:1621c22e-90f7-48c9-bf6d-d20a7a861756"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:06:41 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "8ada13b0-f8a0-4b43-88db-05e57011328a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb2f9c5f-bc13-47c5-b147-6bac2b7204d3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200702Z:bb2f9c5f-bc13-47c5-b147-6bac2b7204d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:01 GMT"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "0a8bdc48-fe73-4dbc-ac87-9bc52218f212"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "3eb0979a-c1a2-4377-8e06-6bde2de48c8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200722Z:3eb0979a-c1a2-4377-8e06-6bde2de48c8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:21 GMT"
+ ],
+ "Content-Length": [
+ "106"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/744fe371-1f73-4d8e-a28c-1fb00c9db412?api-version=2019-06-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83NDRmZTM3MS0xZjczLTRkOGUtYTI4Yy0xZmIwMGM5ZGI0MTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-request-id": [
+ "cdf6e769-f261-4ac5-b760-a821056c532a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "42bf348d-7aeb-406c-9f97-d546bfe3fc64"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200724Z:42bf348d-7aeb-406c-9f97-d546bfe3fc64"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:24 GMT"
+ ],
+ "Content-Length": [
+ "106"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"744fe371-1f73-4d8e-a28c-1fb00c9db412\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:07:23.23Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/ps3596?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3BzMzU5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8a1fcf45-3ca9-4437-93ef-71117674fca2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "c34458fb-205c-4dc0-896e-2f09db6e9b4e"
+ ],
+ "x-ms-correlation-request-id": [
+ "c34458fb-205c-4dc0-896e-2f09db6e9b4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200726Z:c34458fb-205c-4dc0-896e-2f09db6e9b4e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "15cb98df-8c34-4625-9ce0-674075af82b2"
+ ],
+ "x-ms-correlation-request-id": [
+ "15cb98df-8c34-4625-9ce0-674075af82b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200742Z:15cb98df-8c34-4625-9ce0-674075af82b2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "2787d5d5-34fc-4dfe-a824-d2d1d33b93a8"
+ ],
+ "x-ms-correlation-request-id": [
+ "2787d5d5-34fc-4dfe-a824-d2d1d33b93a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200757Z:2787d5d5-34fc-4dfe-a824-d2d1d33b93a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:07:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "111f5cb2-3732-425b-ac98-82b42b71f260"
+ ],
+ "x-ms-correlation-request-id": [
+ "111f5cb2-3732-425b-ac98-82b42b71f260"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200812Z:111f5cb2-3732-425b-ac98-82b42b71f260"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:08:12 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "7f419e7d-f51a-4695-ada0-51a69a739923"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f419e7d-f51a-4695-ada0-51a69a739923"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200827Z:7f419e7d-f51a-4695-ada0-51a69a739923"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:08:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "e520d366-694f-40ef-907f-015eb04dddfa"
+ ],
+ "x-ms-correlation-request-id": [
+ "e520d366-694f-40ef-907f-015eb04dddfa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200842Z:e520d366-694f-40ef-907f-015eb04dddfa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:08:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "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": [
+ "50585879-1f42-4831-a396-4760913723ee"
+ ],
+ "x-ms-correlation-request-id": [
+ "50585879-1f42-4831-a396-4760913723ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200857Z:50585879-1f42-4831-a396-4760913723ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:08:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "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": [
+ "808ff53e-5f3b-4f9d-8878-4e31578184b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "808ff53e-5f3b-4f9d-8878-4e31578184b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200303T200858Z:808ff53e-5f3b-4f9d-8878-4e31578184b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 03 Mar 2020 20:08:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateandUpdateServerWithMinimalTlsVersion": [
+ "ps3596",
+ "ps7247"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "148bffe3-0304-454b-8a25-ee196b761f18"
+ }
+}
\ No newline at end of file
diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj
index c33d0555e501..67266f7a8ae7 100644
--- a/src/Sql/Sql.Test/Sql.Test.csproj
+++ b/src/Sql/Sql.Test/Sql.Test.csproj
@@ -19,7 +19,7 @@
-
+
diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1
index bb792f1a6688..e2a09ef29701 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: 2/11/2020
+# Generated on: 3/5/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.3.0'
+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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll',
@@ -252,7 +252,12 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption',
'Enable-AzSqlDatabaseSensitivityRecommendation',
'Disable-AzSqlDatabaseSensitivityRecommendation',
'Enable-AzSqlInstanceDatabaseSensitivityRecommendation',
- 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation'
+ 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation',
+ 'Get-AzSqlInstanceDatabaseLongTermRetentionBackup',
+ 'Remove-AzSqlInstanceDatabaseLongTermRetentionBackup',
+ 'Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy',
+ 'Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy',
+ 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication'
# Variables to export from this module
# VariablesToExport = @()
@@ -308,9 +313,15 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added support for cross subscription point in time restore on Managed Instances.
-* Added support for changing existing Sql Managed Instance hardware generation
-* Fixed ''Update-AzSqlServerVulnerabilityAssessmentSetting'' help examples: parameter/property output - EmailAdmins'
+ 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'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md
index 8d46cec92d70..cb8d51ac5aad 100644
--- a/src/Sql/Sql/ChangeLog.md
+++ b/src/Sql/Sql/ChangeLog.md
@@ -18,12 +18,23 @@
- Additional information about change #1
-->
## Upcoming Release
-* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer
+
+## Version 2.4.0
+* 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
## Version 2.3.0
* Added support for cross subscription point in time restore on Managed Instances.
* Added support for changing existing Sql Managed Instance hardware generation
* Fixed `Update-AzSqlServerVulnerabilityAssessmentSetting` help examples: parameter/property output - EmailAdmins
+* Updating Azure SQL Server Active Azure administrator API to use 2019-06-01-preview api version.
## Version 2.2.0
Fix New-AzSqlDatabaseSecondary cmdlet to check for PartnerDatabaseName existence instead of DatabaseName existence.
diff --git a/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs b/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs
index bd658e2c3904..8f428f2a8127 100644
--- a/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs
+++ b/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs
@@ -87,7 +87,7 @@ public class RestoreAzureRmSqlDatabase
[Parameter(
ParameterSetName = FromLongTermRetentionBackupWithVcoreSetName,
Mandatory = true,
- HelpMessage = "Restore from a long term retention backup backup.")]
+ HelpMessage = "Restore from a long term retention backup.")]
public SwitchParameter FromLongTermRetentionBackup { get; set; }
///
diff --git a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupCommunicator.cs b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupCommunicator.cs
index a4dfda0d2135..9efa6f7a2748 100644
--- a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupCommunicator.cs
+++ b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupCommunicator.cs
@@ -154,13 +154,13 @@ public Management.Sql.LegacySdk.Models.DeletedDatabaseBackup GetDeletedDatabaseB
/// The name of the Azure SQL Server
/// A backup vault
public Management.Sql.LegacySdk.Models.BackupLongTermRetentionVault GetBackupLongTermRetentionVault(
- string resourceGroupName,
- string serverName,
+ string resourceGroupName,
+ string serverName,
string baVaultName)
{
return GetLegacySqlClient().DatabaseBackup.GetBackupLongTermRetentionVault(
- resourceGroupName,
- serverName,
+ resourceGroupName,
+ serverName,
baVaultName).BackupLongTermRetentionVault;
}
@@ -172,15 +172,15 @@ public Management.Sql.LegacySdk.Models.BackupLongTermRetentionVault GetBackupLon
/// The name of the Azure SQL Database
/// A backup LongTermRetention policy
public Management.Sql.LegacySdk.Models.DatabaseBackupLongTermRetentionPolicy GetDatabaseBackupLongTermRetentionPolicy(
- string resourceGroupName,
- string serverName,
- string databaseName,
+ string resourceGroupName,
+ string serverName,
+ string databaseName,
string baPolicyName)
{
return GetLegacySqlClient().DatabaseBackup.GetDatabaseBackupLongTermRetentionPolicy(
- resourceGroupName,
- serverName,
- databaseName,
+ resourceGroupName,
+ serverName,
+ databaseName,
baPolicyName).DatabaseBackupLongTermRetentionPolicy;
}
@@ -188,15 +188,15 @@ public Management.Sql.LegacySdk.Models.DatabaseBackupLongTermRetentionPolicy Get
/// Creates or updates a backup LongTermRetention vault
///
public Management.Sql.LegacySdk.Models.BackupLongTermRetentionVault SetBackupLongTermRetentionVault(
- string resourceGroupName,
- string serverName,
- string baVaultName,
+ string resourceGroupName,
+ string serverName,
+ string baVaultName,
BackupLongTermRetentionVaultCreateOrUpdateParameters parameters)
{
return GetLegacySqlClient().DatabaseBackup.CreateOrUpdateBackupLongTermRetentionVault(
- resourceGroupName,
- serverName,
- baVaultName,
+ resourceGroupName,
+ serverName,
+ baVaultName,
parameters).BackupLongTermRetentionVault;
}
@@ -204,17 +204,17 @@ public Management.Sql.LegacySdk.Models.BackupLongTermRetentionVault SetBackupLon
/// Creates or updates a backup LongTermRetention policy
///
public Management.Sql.LegacySdk.Models.DatabaseBackupLongTermRetentionPolicy SetDatabaseBackupLongTermRetentionPolicy(
- string resourceGroupName,
- string serverName,
- string databaseName,
- string baPolicyName,
+ string resourceGroupName,
+ string serverName,
+ string databaseName,
+ string baPolicyName,
DatabaseBackupLongTermRetentionPolicyCreateOrUpdateParameters parameters)
{
return GetLegacySqlClient().DatabaseBackup.CreateOrUpdateDatabaseBackupLongTermRetentionPolicy(
- resourceGroupName,
- serverName,
- databaseName,
- baPolicyName,
+ resourceGroupName,
+ serverName,
+ databaseName,
+ baPolicyName,
parameters).DatabaseBackupLongTermRetentionPolicy;
}
diff --git a/src/Sql/Sql/Database Backup/Cmdlet/AzureSqlServerBackupLongTermRetentionVaultCmdletBase.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs
similarity index 52%
rename from src/Sql/Sql/Database Backup/Cmdlet/AzureSqlServerBackupLongTermRetentionVaultCmdletBase.cs
rename to src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs
index 09820b61edf2..8bf9eb9db1de 100644
--- a/src/Sql/Sql/Database Backup/Cmdlet/AzureSqlServerBackupLongTermRetentionVaultCmdletBase.cs
+++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs
@@ -15,37 +15,48 @@
using System.Collections.Generic;
using System.Management.Automation;
using Microsoft.Azure.Commands.Common.Authentication.Models;
-using Microsoft.Azure.Commands.Sql.Backup.Model;
-using Microsoft.Azure.Commands.Sql.Backup.Services;
+using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model;
+using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Services;
using Microsoft.Azure.Commands.Sql.Common;
using Microsoft.Azure.Commands.Sql.Database.Model;
using Microsoft.Azure.Commands.Sql.Database.Services;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
-namespace Microsoft.Azure.Commands.Sql.Backup.Cmdlet
+namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet
{
- public abstract class AzureSqlServerBackupLongTermRetentionVaultCmdletBase :
- AzureSqlCmdletBase, AzureSqlDatabaseBackupAdapter>
+ public abstract class AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase :
+ AzureSqlCmdletBase, AzureSqlManagedDatabaseBackupAdapter>
{
///
- /// Gets or sets the name of the database server to use.
+ /// Gets or sets the name of the managed instance to use.
///
[Parameter(Mandatory = true,
ValueFromPipelineByPropertyName = true,
Position = 1,
- HelpMessage = "The name of the Azure SQL Server the database is in.")]
- [ResourceNameCompleter("Microsoft.Sql/servers", "ResourceGroupName")]
+ HelpMessage = "The name of the Azure Managed Instance the database belongs to.")]
+ [ResourceNameCompleter("Microsoft.Sql/managedInstance", "ResourceGroupName")]
[ValidateNotNullOrEmpty]
- public string ServerName { get; set; }
+ public string InstanceName { get; set; }
+
+ ///
+ /// Gets or sets the name of the managed database to use.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ Position = 2,
+ HelpMessage = "The name of the Azure Managed Database to use.")]
+ [ResourceNameCompleter("Microsoft.Sql/managedInstances/databases", "ResourceGroupName", "ManagedInstanceName")]
+ [ValidateNotNullOrEmpty]
+ public string DatabaseName { get; set; }
///
/// Initializes the adapter
///
///
- protected override AzureSqlDatabaseBackupAdapter InitModelAdapter()
+ protected override AzureSqlManagedDatabaseBackupAdapter InitModelAdapter()
{
- return new AzureSqlDatabaseBackupAdapter(DefaultProfile.DefaultContext);
+ return new AzureSqlManagedDatabaseBackupAdapter(DefaultProfile.DefaultContext);
}
}
}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase.cs
new file mode 100644
index 000000000000..7568dc01fdf5
--- /dev/null
+++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase.cs
@@ -0,0 +1,39 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 System.Collections.Generic;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Common.Authentication.Models;
+using Microsoft.Azure.Commands.Sql.Common;
+using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model;
+using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Services;
+using Microsoft.Azure.Commands.Sql.ManagedDatabase.Model;
+using Microsoft.Azure.Commands.Sql.ManagedDatabase.Services;
+using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
+
+namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet
+{
+ public abstract class AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase :
+ AzureSqlCmdletBase, AzureSqlManagedDatabaseBackupAdapter>
+ {
+ ///
+ /// Initializes the adapter
+ ///
+ ///
+ protected override AzureSqlManagedDatabaseBackupAdapter InitModelAdapter()
+ {
+ return new AzureSqlManagedDatabaseBackupAdapter(DefaultProfile.DefaultContext);
+ }
+ }
+}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs
new file mode 100644
index 000000000000..148678f174b4
--- /dev/null
+++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs
@@ -0,0 +1,67 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 System.Linq;
+using System.Collections.Generic;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model;
+using Microsoft.Azure.Commands.Sql.Database.Model;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
+
+namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet
+{
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseBackupLongTermRetentionPolicy",
+ SupportsShouldProcess = true),
+ OutputType(typeof(AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel))]
+ [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseLongTermRetentionPolicy")]
+ public class GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy : AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase
+ {
+ ///
+ /// Get the entities from the service
+ ///
+ /// The list of entities
+ protected override IEnumerable GetEntity()
+ {
+ return new List()
+ {
+ ModelAdapter.GetManagedDatabaseLongTermRetentionPolicy(
+ this.ResourceGroupName,
+ this.InstanceName,
+ this.DatabaseName)
+ };
+ }
+
+ ///
+ /// No user input to apply to model
+ ///
+ /// Model retrieved from service
+ /// The model that was passed in
+ protected override IEnumerable ApplyUserInputToModel(
+ IEnumerable model)
+ {
+ return model;
+ }
+
+ ///
+ /// No changes to persist to server
+ ///
+ /// The output of apply user input to model
+ /// The input entity
+ protected override IEnumerable PersistChanges(
+ IEnumerable entity)
+ {
+ return entity;
+ }
+ }
+}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs
new file mode 100644
index 000000000000..e03491a84ca6
--- /dev/null
+++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs
@@ -0,0 +1,277 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 System;
+using System.Linq;
+using System.Collections.Generic;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.Sql.ManagedDatabase.Model;
+using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model;
+using Microsoft.Azure.Commands.Sql.Database.Model;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+
+namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet
+{
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseLongTermRetentionBackup", DefaultParameterSetName = LocationSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseLongTermRetentionBackupModel))]
+ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase
+ {
+ ///
+ /// Parameter set name for backup name.
+ ///
+ private const string BackupNameSet = "BackupName";
+
+ ///
+ /// Parameter set name for instance name.
+ ///
+ private const string InstanceNameSet = "InstanceName";
+
+ ///
+ /// Parameter set for database name.
+ ///
+ private const string DatabaseNameSet = "DatabaseName";
+
+ ///
+ /// Parameter set name for location name.
+ ///
+ private const string LocationSet = "Location";
+
+ ///
+ /// Parameter set for using a Database Input Object when getting a single backup.
+ ///
+ private const string GetBackupByInputObjectSet = "GetBackupByInputObject";
+
+ ///
+ /// Parameter set for using a Database Input Object when getting multiple backups.
+ ///
+ private const string GetBackupsByInputObjectSet = "GetBackupsByInputObject";
+
+ ///
+ /// Parameter set for using a Database Resource ID when getting a single backup.
+ ///
+ private const string GetBackupByResourceIdSet = "GetBackupByResourceId";
+
+ ///
+ /// The location the backups are in.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = LocationSet,
+ Position = 0,
+ HelpMessage = "The location of the backups' source Managed Instance.")]
+ [Parameter(Mandatory = true,
+ ParameterSetName = InstanceNameSet,
+ Position = 0,
+ HelpMessage = "The backups' source Managed Instance.")]
+ [Parameter(Mandatory = true,
+ ParameterSetName = DatabaseNameSet,
+ Position = 0,
+ HelpMessage = "The backups' source Managed Database.")]
+ [Parameter(Mandatory = true,
+ ParameterSetName = BackupNameSet,
+ Position = 0,
+ HelpMessage = "The backups' source Managed Instance.")]
+ [Parameter(Mandatory = true,
+ ParameterSetName = GetBackupByResourceIdSet,
+ Position = 1,
+ HelpMessage = "The location of the backup's source Managed Instance.")]
+ [LocationCompleter("Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups")]
+ public string Location { get; set; }
+
+ ///
+ /// Gets or sets the Database object to get backups for.
+ ///
+ [Parameter(ParameterSetName = GetBackupByInputObjectSet,
+ Mandatory = true,
+ Position = 0,
+ ValueFromPipeline = true,
+ HelpMessage = "The database object to get backups for.")]
+ [Parameter(ParameterSetName = GetBackupsByInputObjectSet,
+ Mandatory = true,
+ Position = 0,
+ ValueFromPipeline = true,
+ HelpMessage = "The database object to get backups for.")]
+ [ValidateNotNullOrEmpty]
+ public AzureSqlManagedDatabaseModel InputObject { get; set; }
+
+ ///
+ /// Gets or sets the Database Resource ID to get backups for.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = GetBackupByResourceIdSet,
+ Position = 0,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The database Resource ID to get backups for.")]
+ public string ResourceId { get; set; }
+
+ ///
+ /// Gets or sets the name of the server.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = InstanceNameSet,
+ Position = 1,
+ HelpMessage = "The name of the Managed Instance the backups are under.")]
+ [Parameter(Mandatory = true,
+ ParameterSetName = DatabaseNameSet,
+ Position = 1,
+ HelpMessage = "The name of the Managed Database the backups are under.")]
+ [Parameter(Mandatory = true,
+ ParameterSetName = BackupNameSet,
+ Position = 1,
+ HelpMessage = "The name of the Managed Instance the backups are under.")]
+ [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string InstanceName { get; set; }
+
+ ///
+ /// Gets or sets the name of the database.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = DatabaseNameSet,
+ Position = 2,
+ HelpMessage = "The name of the Managed Database the backups are under.")]
+ [Parameter(Mandatory = true,
+ ParameterSetName = BackupNameSet,
+ Position = 2,
+ HelpMessage = "The name of the Managed Instance the backup is from.")]
+ [ResourceNameCompleter("Microsoft.Sql/managedInstances/databases", "ResourceGroupName", "ManagedInstanceName")]
+ [ValidateNotNullOrEmpty]
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the backup name.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = BackupNameSet,
+ ValueFromPipelineByPropertyName = true,
+ Position = 3,
+ HelpMessage = "The name of the backup.")]
+ [Parameter(Mandatory = true,
+ ParameterSetName = GetBackupByInputObjectSet,
+ ValueFromPipelineByPropertyName = true,
+ Position = 2,
+ HelpMessage = "The name of the backup.")]
+ [ValidateNotNullOrEmpty]
+ [SupportsWildcards]
+ public string BackupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the resource group to use.
+ ///
+ [Parameter(Mandatory = false,
+ ParameterSetName = LocationSet,
+ HelpMessage = "The name of the resource group.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = InstanceNameSet,
+ HelpMessage = "The name of the resource group.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = DatabaseNameSet,
+ HelpMessage = "The name of the resource group.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = BackupNameSet,
+ HelpMessage = "The name of the resource group.")]
+ [ResourceGroupCompleter]
+ public override string ResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets whether or not to only get the latest backup per database.
+ ///
+ [Parameter(Mandatory = false,
+ ParameterSetName = InstanceNameSet,
+ HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = LocationSet,
+ HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = DatabaseNameSet,
+ HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = GetBackupsByInputObjectSet,
+ HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")]
+ [ValidateNotNullOrEmpty]
+ public SwitchParameter OnlyLatestPerDatabase { get; set; }
+
+ ///
+ /// Gets or sets the database state to look for (Alive or Deleted).
+ ///
+ [Parameter(Mandatory = false,
+ ParameterSetName = InstanceNameSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = LocationSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = GetBackupsByInputObjectSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")]
+ [ValidateNotNullOrEmpty]
+ [ValidateSet(Management.Sql.Models.LongTermRetentionDatabaseState.All, Management.Sql.Models.LongTermRetentionDatabaseState.Deleted, Management.Sql.Models.LongTermRetentionDatabaseState.Live,
+ IgnoreCase = true)]
+ public string DatabaseState { get; set; }
+
+ ///
+ /// Get the entities from the service
+ ///
+ /// The list of entities
+ protected override IEnumerable GetEntity()
+ {
+ if (InputObject != null)
+ {
+ Location = InputObject.Location;
+ InstanceName = InputObject.ManagedInstanceName;
+ DatabaseName = InputObject.Name;
+ ResourceGroupName = InputObject.ResourceGroupName;
+ }
+ else if (!string.IsNullOrWhiteSpace(ResourceId))
+ {
+ ResourceIdentifier identifier = new ResourceIdentifier(ResourceId);
+ DatabaseName = identifier.ResourceName;
+ ResourceGroupName = identifier.ResourceGroupName;
+ InstanceName = identifier.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries)[1];
+ }
+
+ return SubResourceWildcardFilter(BackupName, ModelAdapter.GetManagedDatabaseLongTermRetentionBackups(
+ Location,
+ InstanceName,
+ DatabaseName,
+ BackupName,
+ ResourceGroupName,
+ OnlyLatestPerDatabase.IsPresent,
+ DatabaseState));
+ }
+
+ ///
+ /// No user input to apply to model
+ ///
+ /// Model retrieved from service
+ /// The model that was passed in
+ protected override IEnumerable ApplyUserInputToModel(
+ IEnumerable model)
+ {
+ return model;
+ }
+
+ ///
+ /// No changes to persist to managed instance
+ ///
+ /// The output of apply user input to model
+ /// The input entity
+ protected override IEnumerable PersistChanges(
+ IEnumerable entity)
+ {
+ return entity;
+ }
+ }
+}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs
new file mode 100644
index 000000000000..46fa28624508
--- /dev/null
+++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs
@@ -0,0 +1,236 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 System;
+using System.Linq;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Globalization;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model;
+using Microsoft.Azure.Commands.Sql.ManagedDatabase.Model;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+
+namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet
+{
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseLongTermRetentionBackup", DefaultParameterSetName = RemoveBackupDefaultSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseLongTermRetentionBackupModel))]
+ public class RemoveAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase
+ {
+ ///
+ /// Parameter set name for the default remove.
+ ///
+ private const string RemoveBackupDefaultSet = "RemoveBackupDefault";
+
+ ///
+ /// Parameter set name for remove with an input object.
+ ///
+ private const string RemoveBackupByInputObjectSet = "RemoveBackupByInputObject";
+
+ ///
+ /// Parameter set name for remove with a resource ID.
+ ///
+ private const string RemoveBackupByResourceIdSet = "RemoveBackupByResourceId";
+
+ ///
+ /// Gets or sets the name of the location the backup is in.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = RemoveBackupDefaultSet,
+ Position = 0,
+ HelpMessage = "The location of the backups' source Managed Instance.")]
+ [ValidateNotNullOrEmpty]
+ [LocationCompleter("Microsoft.Sql/locations/longTermRetentionManagedInstances")]
+ public virtual string Location { get; set; }
+
+ ///
+ /// Gets or sets the name of the server.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = RemoveBackupDefaultSet,
+ Position = 1,
+ HelpMessage = "The name of the Managed Instance the backup is under.")]
+ [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string InstanceName { get; set; }
+
+ ///
+ /// Gets or sets the name of the database.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = RemoveBackupDefaultSet,
+ Position = 2,
+ HelpMessage = "The name of the Managed Database the backup is from.")]
+ [ResourceNameCompleter("Microsoft.Sql/managedInstances/databases", "ResourceGroupName", "ManagedInstanceName")]
+ [ValidateNotNullOrEmpty]
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the LTR Backup object to remove.
+ ///
+ [Parameter(ParameterSetName = RemoveBackupByInputObjectSet,
+ Mandatory = true,
+ Position = 0,
+ ValueFromPipeline = true,
+ HelpMessage = "The Database Long Term Retention Backup object to remove.")]
+ [ValidateNotNullOrEmpty]
+ public AzureSqlManagedDatabaseLongTermRetentionBackupModel InputObject { get; set; }
+
+ ///
+ /// Gets or sets the resource ID of the LTR Backup to remove.
+ ///
+ [Parameter(ParameterSetName = RemoveBackupByResourceIdSet,
+ Mandatory = true,
+ Position = 0,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Resource ID of the Database Long Term Retention Backup to remove.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId { get; set; }
+
+ ///
+ /// Gets or sets the backup name.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = RemoveBackupDefaultSet,
+ ValueFromPipelineByPropertyName = true,
+ Position = 3,
+ HelpMessage = "The name of the backup.")]
+ [ValidateNotNullOrEmpty]
+ public string BackupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the resource group to use.
+ ///
+ [Parameter(Mandatory = false,
+ ParameterSetName = RemoveBackupDefaultSet,
+ HelpMessage = "The name of the resource group.")]
+ [ResourceGroupCompleter]
+ public override string ResourceGroupName { get; set; }
+
+ ///
+ /// Defines whether it is ok to skip the requesting of rule removal confirmation
+ ///
+ [Parameter(HelpMessage = "Skip confirmation message for performing the action")]
+ public SwitchParameter Force { get; set; }
+
+ ///
+ /// Defines whether the cmdlets will output the model object at the end of its execution
+ ///
+ public SwitchParameter PassThru { get; set; }
+
+ ///
+ /// Returns true if the model object that was constructed by this cmdlet should be written out
+ ///
+ protected override bool WriteResult() { return PassThru; }
+
+ ///
+ /// Get the entities from the service
+ ///
+ /// The list of entities
+ protected override IEnumerable GetEntity()
+ {
+ return ModelAdapter.GetManagedDatabaseLongTermRetentionBackups(
+ Location,
+ InstanceName,
+ DatabaseName,
+ BackupName,
+ ResourceGroupName,
+ null,
+ null);
+ }
+
+ ///
+ /// No user input to apply to model
+ ///
+ /// Model retrieved from service
+ /// The model that was passed in
+ protected override IEnumerable ApplyUserInputToModel(
+ IEnumerable model)
+ {
+ return model;
+ }
+
+ ///
+ /// No changes to persist to server
+ ///
+ /// The output of apply user input to model
+ /// The input entity
+ protected override IEnumerable PersistChanges(
+ IEnumerable entity)
+ {
+ ModelAdapter.RemoveManagedDatabaseLongTermRetentionBackup(Location, InstanceName, DatabaseName, BackupName, ResourceGroupName);
+ return entity;
+ }
+
+ ///
+ /// Entry point for the cmdlet
+ ///
+ public override void ExecuteCmdlet()
+ {
+ if (InputObject != null)
+ {
+ Location = InputObject.Location;
+ InstanceName = InputObject.ManagedInstanceName;
+ DatabaseName = InputObject.DatabaseName;
+ BackupName = InputObject.BackupName;
+ ResourceGroupName = InputObject.ResourceGroupName;
+ }
+ else if (!string.IsNullOrWhiteSpace(ResourceId))
+ {
+ ParseLongTermRentionBackupResourceId(ResourceId);
+ }
+
+ if (ShouldProcess(this.BackupName))
+ {
+ if (Force.IsPresent || ShouldContinue(
+ string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription, this.BackupName, this.DatabaseName, this.InstanceName, this.Location),
+ string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning, this.BackupName, this.DatabaseName, this.InstanceName, this.Location)))
+ {
+ base.ExecuteCmdlet();
+ }
+ }
+ }
+
+ ///
+ /// Parse the longTermRetentionBackup resource Id
+ ///
+ ///
+ private void ParseLongTermRentionBackupResourceId(string resourceId)
+ {
+ int offset = 0;
+ string[] tokens = resourceId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries);
+ if (tokens.Length == 14 || tokens.Length == 12)
+ {
+ if (tokens.Length == 14)
+ {
+ ResourceGroupName = tokens[3];
+ offset = 2;
+ }
+ else
+ {
+ ResourceGroupName = null;
+ }
+
+ Location = tokens[5 + offset];
+ InstanceName = tokens[7 + offset];
+ DatabaseName = tokens[9 + offset];
+ BackupName = tokens[11 + offset];
+ }
+ else
+ {
+ throw new ArgumentException("Invalid parameter", "ResourceId");
+
+ }
+ }
+ }
+}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs
new file mode 100644
index 000000000000..3c4a0eff63a7
--- /dev/null
+++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs
@@ -0,0 +1,197 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Sql.Database.Model;
+using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
+
+namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet
+{
+ ///
+ /// Cmdlet to create or update a new Azure Sql Database backup archival policy
+ ///
+ [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseBackupLongTermRetentionPolicy",
+ DefaultParameterSetName = WeeklyRetentionRequiredSet, SupportsShouldProcess = true,
+ ConfirmImpact = ConfirmImpact.Low),
+ OutputType(typeof(AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel))]
+ [Alias("Set-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseLongTermRetentionPolicy")]
+ public class SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy : AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase
+ {
+ ///
+ /// Parameter set name for Weekly Retention.
+ ///
+ private const string WeeklyRetentionRequiredSet = "WeeklyRetentionRequired";
+
+ ///
+ /// Parameter set name for Monthly Retention.
+ ///
+ private const string MonthlyRetentionRequiredSet = "MonthlyRetentionRequired";
+
+ ///
+ /// Parameter set name for Yearly Retention.
+ ///
+ private const string YearlyRetentionRequiredSet = "YearlyRetentionRequired";
+
+ ///
+ /// Parameter set for clearing the long term retention V2 policy.
+ ///
+ private const string RemovePolicySet = "RemovePolicy";
+
+ ///
+ /// Gets or sets whether or not to clear the Long Term Retention V2 policy.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = RemovePolicySet,
+ HelpMessage = "If provided, the policy for the database will be cleared.")]
+ public SwitchParameter RemovePolicy { get; set; }
+
+ ///
+ /// Gets or sets the Weekly Retention.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = WeeklyRetentionRequiredSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Weekly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = MonthlyRetentionRequiredSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Weekly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = YearlyRetentionRequiredSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Weekly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")]
+ [ValidateNotNullOrEmpty]
+ public string WeeklyRetention { get; set; }
+
+ ///
+ /// Gets or sets the Monthly Retention.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = MonthlyRetentionRequiredSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Monthly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")]
+ [Parameter(Mandatory = false,
+ ParameterSetName = YearlyRetentionRequiredSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Monthly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")]
+ [ValidateNotNullOrEmpty]
+ public string MonthlyRetention { get; set; }
+
+ ///
+ /// Gets or sets the Yearly Retention.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = YearlyRetentionRequiredSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Yearly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")]
+ [ValidateNotNullOrEmpty]
+ public string YearlyRetention { get; set; }
+
+ ///
+ /// Gets or sets the Week of Year for the Yearly Retention.
+ ///
+ [Parameter(Mandatory = true,
+ ParameterSetName = YearlyRetentionRequiredSet,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Week of Year, 1 to 52, to save for the Yearly Retention.")]
+ [ValidateNotNullOrEmpty]
+ public int WeekOfYear { get; set; }
+
+ ///
+ /// Get the entities from the service
+ ///
+ /// The list of entities
+ protected override IEnumerable GetEntity()
+ {
+ return new List()
+ {
+ ModelAdapter.GetManagedDatabaseLongTermRetentionPolicy(
+ this.ResourceGroupName,
+ this.InstanceName,
+ this.DatabaseName)
+ };
+ }
+
+ ///
+ /// Create the model from user input
+ ///
+ /// Model retrieved from service
+ /// The model that was passed in
+ protected override IEnumerable ApplyUserInputToModel(IEnumerable model)
+ {
+ int temp;
+ string retentionFormat = "P{0}D";
+ if (int.TryParse(WeeklyRetention, out temp))
+ {
+ WeeklyRetention = string.Format(retentionFormat, WeeklyRetention);
+ }
+
+ if (int.TryParse(MonthlyRetention, out temp))
+ {
+ MonthlyRetention = string.Format(retentionFormat, MonthlyRetention);
+ }
+
+ if (int.TryParse(YearlyRetention, out temp))
+ {
+ YearlyRetention = string.Format(retentionFormat, YearlyRetention);
+ }
+
+ if (RemovePolicy.IsPresent)
+ {
+ WeeklyRetention = "P0D";
+ MonthlyRetention = "P0D";
+ YearlyRetention = "P0D";
+ WeekOfYear = 1;
+ }
+
+ return new List()
+ {
+ new AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel()
+ {
+ ResourceGroupName = ResourceGroupName,
+ ManagedInstanceName = InstanceName,
+ DatabaseName = DatabaseName,
+ Location = model.FirstOrDefault().Location,
+ WeeklyRetention = WeeklyRetention,
+ MonthlyRetention = MonthlyRetention,
+ YearlyRetention = YearlyRetention,
+ WeekOfYear = WeekOfYear
+ }
+ };
+ }
+
+ ///
+ /// Update the entity
+ ///
+ /// The output of apply user input to model
+ /// The input entity
+ protected override IEnumerable PersistChanges(IEnumerable entity)
+ {
+ if (ShouldProcess(DatabaseName))
+ {
+ return new List() {
+ ModelAdapter.SetManagedDatabaseBackupLongTermRetentionPolicy(this.ResourceGroupName, this.InstanceName, this.DatabaseName, entity.First())
+ };
+ }
+ else
+ {
+ return null;
+ }
+ }
+ }
+}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs
new file mode 100644
index 000000000000..3a9d5295071b
--- /dev/null
+++ b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs
@@ -0,0 +1,63 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 System;
+using System.Collections.Generic;
+using Microsoft.Azure.Management.Sql.Models;
+
+namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model
+{
+ public class AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel
+ {
+ ///
+ /// Gets or sets the name of the resource group
+ ///
+ public string ResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the instance
+ ///
+ public string ManagedInstanceName { get; set; }
+
+ ///
+ /// Gets or sets the name of the database
+ ///
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the weekly retention
+ ///
+ public string WeeklyRetention { get; set; }
+
+ ///
+ /// Gets or sets the monthly retention
+ ///
+ public string MonthlyRetention { get; set; }
+
+ ///
+ /// Gets or sets the yearly retention
+ ///
+ public string YearlyRetention { get; set; }
+
+ ///
+ /// Gets or sets the week of year for yearly retention
+ ///
+ public int? WeekOfYear { get; set; }
+
+ ///
+ /// Gets or sets the location
+ ///
+ public string Location { get; set; }
+ }
+}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs
new file mode 100644
index 000000000000..9c9412ff03b2
--- /dev/null
+++ b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs
@@ -0,0 +1,75 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model
+{
+ public class AzureSqlManagedDatabaseLongTermRetentionBackupModel
+ {
+ ///
+ /// Gets or sets the backup expiration time.
+ ///
+ public DateTime? BackupExpirationTime { get; set; }
+
+ ///
+ /// Gets or sets the backup name.
+ ///
+ public string BackupName { get; set; }
+
+ ///
+ /// Gets or sets the backup time.
+ ///
+ public DateTime? BackupTime { get; set; }
+
+ ///
+ /// Gets or sets the database name.
+ ///
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the database deletion time.
+ ///
+ public DateTime? DatabaseDeletionTime { get; set; }
+
+ ///
+ /// Gets or sets the location name.
+ ///
+ public string Location { get; set; }
+
+ ///
+ /// Gets or sets the resource ID.
+ ///
+ public string ResourceId { get; set; }
+
+ ///
+ /// Gets or sets the Managed Instance name.
+ ///
+ public string ManagedInstanceName { get; set; }
+
+ ///
+ /// Gets or sets the instance create time.
+ ///
+ public DateTime? InstanceCreateTime { get; set; }
+
+ ///
+ /// Gets or sets the resource group name.
+ ///
+ public string ResourceGroupName { get; set; }
+ }
+}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs
index 9f393a8d0660..8394e2f6d2ea 100644
--- a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs
+++ b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs
@@ -22,6 +22,7 @@
using System.Globalization;
using System.Linq;
using Microsoft.Azure.Management.Sql.Models;
+using System.Management.Automation;
namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Services
{
@@ -201,5 +202,147 @@ internal AzureSqlDeletedManagedDatabaseBackupModel GetDeletedDatabaseBackup(stri
EarliestRestorePoint = deletedDatabaseBackup.EarliestRestoreDate,
};
}
+
+ ///
+ /// Get a backup LongTermRetention policy for a Managed Database
+ ///
+ /// The name of the resource group
+ /// The name of the Managed Instance
+ /// The name of the Managed Database
+ /// Whether or not the user provided the Current switch to get the current implementation of LTR policy
+ /// A backup LongTermRetention policy
+ internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel GetManagedDatabaseLongTermRetentionPolicy(
+ string resourceGroup,
+ string instanceName,
+ string databaseName)
+ {
+ ManagedInstanceLongTermRetentionPolicy response = Communicator.GetManagedDatabaseLongTermRetentionPolicy(
+ resourceGroup,
+ instanceName,
+ databaseName);
+ return new AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel()
+ {
+ ResourceGroupName = resourceGroup,
+ ManagedInstanceName = instanceName,
+ DatabaseName = databaseName,
+ WeeklyRetention = response.WeeklyRetention,
+ MonthlyRetention = response.MonthlyRetention,
+ YearlyRetention = response.YearlyRetention,
+ WeekOfYear = response.WeekOfYear
+ };
+ }
+
+ ///
+ /// Create or update a backup LongTermRetention policy for a Managed Database
+ ///
+ /// The name of the resource group
+ /// The name of the Azure SQL Server
+ /// The name of the Azure SQL Database
+ /// A backup LongTermRetention policy
+ internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel SetManagedDatabaseBackupLongTermRetentionPolicy(
+ string resourceGroup,
+ string managedInstanceName,
+ string databaseName,
+ AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel model)
+ {
+ ManagedInstanceLongTermRetentionPolicy response = Communicator.SetManagedDatabaseLongTermRetentionPolicy(
+ resourceGroup,
+ managedInstanceName,
+ databaseName,
+ new ManagedInstanceLongTermRetentionPolicy()
+ {
+ WeeklyRetention = model.WeeklyRetention,
+ MonthlyRetention = model.MonthlyRetention,
+ YearlyRetention = model.YearlyRetention,
+ WeekOfYear = model.WeekOfYear
+ });
+ return new AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel()
+ {
+ ResourceGroupName = resourceGroup,
+ ManagedInstanceName = managedInstanceName,
+ DatabaseName = databaseName,
+ WeeklyRetention = response.WeeklyRetention,
+ MonthlyRetention = response.MonthlyRetention,
+ YearlyRetention = response.YearlyRetention,
+ WeekOfYear = response.WeekOfYear
+ };
+ }
+
+ private AzureSqlManagedDatabaseLongTermRetentionBackupModel GetBackupModel(ManagedInstanceLongTermRetentionBackup backup, string locationName)
+ {
+ return new AzureSqlManagedDatabaseLongTermRetentionBackupModel()
+ {
+ BackupExpirationTime = backup.BackupExpirationTime,
+ BackupName = backup.Name,
+ BackupTime = backup.BackupTime,
+ DatabaseDeletionTime = backup.DatabaseDeletionTime,
+ DatabaseName = backup.DatabaseName,
+ Location = locationName,
+ ResourceId = backup.Id,
+ InstanceCreateTime = backup.ManagedInstanceCreateTime,
+ ManagedInstanceName = backup.ManagedInstanceName,
+ ResourceGroupName = GetResourceGroupNameFromResourceId(backup.Id)
+ };
+ }
+
+ private string GetResourceGroupNameFromResourceId(string resourceId)
+ {
+ if (resourceId.Contains("/resourceGroups/"))
+ {
+ return resourceId.Split('/')[4];
+ }
+ return null;
+ }
+
+ ///
+ /// Gets the Long Term Retention backups.
+ ///
+ /// The location name.
+ /// The server name.
+ /// The database name.
+ /// The backup name.
+ /// The resource group name
+ /// Whether or not to only get the latest backup per database.
+ /// The state of databases to get backups for: All, Live, Deleted.
+ internal IEnumerable GetManagedDatabaseLongTermRetentionBackups(
+ string locationName,
+ string managedInstanceName,
+ string databaseName,
+ string backupName,
+ string resourceGroupName,
+ bool? onlyLatestPerDatabase,
+ string databaseState)
+ {
+ if (!string.IsNullOrWhiteSpace(backupName) && !WildcardPattern.ContainsWildcardCharacters(backupName))
+ {
+ return new List()
+ {
+ GetBackupModel(Communicator.GetManagedDatabaseLongTermRetentionBackup(locationName, managedInstanceName, databaseName, backupName, resourceGroupName), locationName)
+ };
+ }
+ else
+ {
+ return Communicator.GetManagedDatabaseLongTermRetentionBackups(locationName, managedInstanceName, databaseName, resourceGroupName, onlyLatestPerDatabase, databaseState)
+ .Select(b => GetBackupModel(b, locationName));
+ }
+ }
+
+ ///
+ /// Removes a Long Term Retention backup.
+ ///
+ /// The location name.
+ /// The server name.
+ /// The database name.
+ /// The backup name.
+ /// The name of the resource group
+ internal void RemoveManagedDatabaseLongTermRetentionBackup(
+ string locationName,
+ string serverName,
+ string databaseName,
+ string backupName,
+ string resourceGroupName)
+ {
+ Communicator.RemoveManagedDatabaseLongTermRetentionBackup(locationName, serverName, databaseName, backupName, resourceGroupName);
+ }
}
}
diff --git a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs
index f90c88289ede..5dadd53226b5 100644
--- a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs
+++ b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs
@@ -137,12 +137,149 @@ public IList ListDeletedDatabaseBackups(string
/// Get a restorable deleted database for a given Sql Azure Database
///
/// The name of the resource group
- /// The name of the Azure SQL Server
- /// The name of the Azure SQL database
+ /// The name of the Managed Instance
+ /// The name of the Managed database
/// List of restore points
- public RestorableDroppedManagedDatabase GetDeletedDatabaseBackup(string resourceGroupName, string serverName, string databaseName)
+ public RestorableDroppedManagedDatabase GetDeletedDatabaseBackup(string resourceGroupName, string instanceName, string databaseName)
+ {
+ return GetCurrentSqlClient().RestorableDroppedManagedDatabases.Get(resourceGroupName, instanceName, databaseName);
+ }
+
+ ///
+ /// Get a backup LongTermRetention policy for a Azure SQL Database
+ ///
+ /// The name of the resource group
+ /// The name of the Managed Instance
+ /// The name of the Managed Database
+ /// A backup LongTermRetention policy
+ public ManagedInstanceLongTermRetentionPolicy GetManagedDatabaseLongTermRetentionPolicy(
+ string resourceGroupName,
+ string instanceName,
+ string databaseName)
+ {
+ return GetCurrentSqlClient().ManagedInstanceLongTermRetentionPolicies.Get(
+ resourceGroupName,
+ instanceName,
+ databaseName);
+ }
+
+ ///
+ /// Sets a database's Long Term Retention policy.
+ ///
+ /// The resource group name.
+ /// The instance name.
+ /// The database name.
+ /// The Long Term Retention policy to apply.
+ public Management.Sql.Models.ManagedInstanceLongTermRetentionPolicy SetManagedDatabaseLongTermRetentionPolicy(
+ string resourceGroup,
+ string instanceName,
+ string databaseName,
+ ManagedInstanceLongTermRetentionPolicy policy)
+ {
+ return GetCurrentSqlClient().ManagedInstanceLongTermRetentionPolicies.CreateOrUpdate(resourceGroup, instanceName, databaseName, policy);
+ }
+
+
+ ///
+ /// Gets the Long Term Retention backup.
+ ///
+ /// The location name.
+ /// The instance name.
+ /// The database name.
+ /// The backup name.
+ /// The resource group name
+ public ManagedInstanceLongTermRetentionBackup GetManagedDatabaseLongTermRetentionBackup(
+ string locationName,
+ string instanceName,
+ string databaseName,
+ string backupName,
+ string resourceGroupName)
+ {
+ if (string.IsNullOrWhiteSpace(resourceGroupName))
+ {
+ return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.Get(locationName, instanceName, databaseName, backupName);
+ }
+ else
+ {
+ return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.GetByResourceGroup(resourceGroupName, locationName, instanceName, databaseName, backupName);
+ }
+ }
+
+ ///
+ /// Gets the Long Term Retention backups.
+ ///
+ /// The location name.
+ /// The instance name.
+ /// The database name.
+ /// The resource group name
+ /// Whether or not to only get the latest backup per database.
+ /// The state of databases to get backups for: All, Live, Deleted.
+ public Rest.Azure.IPage GetManagedDatabaseLongTermRetentionBackups(
+ string locationName,
+ string instanceName,
+ string databaseName,
+ string resourceGroupName,
+ bool? onlyLatestPerDatabase,
+ string databaseState)
{
- return GetCurrentSqlClient().RestorableDroppedManagedDatabases.Get(resourceGroupName, serverName, databaseName);
+ if (!string.IsNullOrWhiteSpace(databaseName))
+ {
+ if (string.IsNullOrWhiteSpace(resourceGroupName))
+ {
+ return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByDatabase(locationName, instanceName, databaseName, onlyLatestPerDatabase, databaseState);
+ }
+ else
+ {
+ return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupDatabase(resourceGroupName, locationName, instanceName, databaseName, onlyLatestPerDatabase, databaseState);
+ }
+ }
+ else if (!string.IsNullOrWhiteSpace(instanceName))
+ {
+ if (string.IsNullOrWhiteSpace(resourceGroupName))
+ {
+ return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByInstance(locationName, instanceName, onlyLatestPerDatabase, databaseState);
+ }
+ else
+ {
+ return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupInstance(resourceGroupName, locationName, instanceName, onlyLatestPerDatabase, databaseState);
+ }
+ }
+ else
+ {
+ if (string.IsNullOrWhiteSpace(resourceGroupName))
+ {
+ return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByLocation(locationName, onlyLatestPerDatabase, databaseState);
+ }
+ else
+ {
+ return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupLocation(resourceGroupName, locationName, onlyLatestPerDatabase, databaseState);
+ }
+ }
+ }
+
+ ///
+ /// Removes a Long Term Retention backup.
+ ///
+ /// The location name.
+ /// The instance name.
+ /// The database name.
+ /// The backup name.
+ /// The resource group name
+ public void RemoveManagedDatabaseLongTermRetentionBackup(
+ string locationName,
+ string instanceName,
+ string databaseName,
+ string backupName,
+ string resourceGroupName)
+ {
+ if (string.IsNullOrWhiteSpace(resourceGroupName))
+ {
+ GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.Delete(locationName, instanceName, databaseName, backupName);
+ }
+ else
+ {
+ GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.DeleteByResourceGroup(resourceGroupName, locationName, instanceName, databaseName, backupName);
+ }
}
}
}
diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs
index 6c2e5bec399a..bc8c03336b32 100644
--- a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs
+++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs
@@ -61,6 +61,9 @@ public class RestoreAzureRmSqlManagedDatabase
private const string GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet =
"GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter";
+ private const string LongTermRetentionBackupRestoreParameterSet =
+ "LongTermRetentionBackupRestoreParameter";
+
///
/// Gets or sets flag indicating a restore from a point-in-time backup.
///
@@ -115,6 +118,15 @@ public class RestoreAzureRmSqlManagedDatabase
HelpMessage = "Restore from a geo backup.")]
public SwitchParameter FromGeoBackup { get; set; }
+ ///
+ /// Gets or sets flag indicating a Long Term Retention backup restore request
+ ///
+ [Parameter(
+ ParameterSetName = LongTermRetentionBackupRestoreParameterSet,
+ Mandatory = true,
+ HelpMessage = "Restore from a Long Term Retention backup.")]
+ public SwitchParameter FromLongTermRetentionBackup { get; set; }
+
///
/// Gets or sets the source subscription id.
///
@@ -134,6 +146,10 @@ public class RestoreAzureRmSqlManagedDatabase
ParameterSetName = PointInTimeDeletedDatabasesCrossInstanceRestoreFromNameAndResourceGroupParameterSet,
Mandatory = false,
HelpMessage = "Source subscription id.")]
+ [Parameter(
+ ParameterSetName = LongTermRetentionBackupRestoreParameterSet,
+ Mandatory = false,
+ HelpMessage = "Source subscription id.")]
[Alias("SourceSubscriptionId")]
public string SubscriptionId { get; set; }
@@ -193,7 +209,7 @@ public class RestoreAzureRmSqlManagedDatabase
[ValidateNotNullOrEmpty]
public override string InstanceName { get; set; }
- ///
+ ///
/// Gets or sets the instance database name to restore
///
[Parameter(ParameterSetName = PointInTimeSameInstanceRestoreFromNameAndResourceGroupParameterSet,
@@ -277,6 +293,11 @@ public class RestoreAzureRmSqlManagedDatabase
[Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromResourceIdParameterSet,
Mandatory = true,
HelpMessage = "The resource id of instance database object to restore")]
+ [Parameter(ParameterSetName = LongTermRetentionBackupRestoreParameterSet,
+ Mandatory = true,
+ Position = 0,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource id of the long term retention managed instance backup object to restore.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
@@ -351,6 +372,9 @@ public class RestoreAzureRmSqlManagedDatabase
[Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet,
Mandatory = true,
HelpMessage = "The name of the target instance to restore to.")]
+ [Parameter(ParameterSetName = LongTermRetentionBackupRestoreParameterSet,
+ Mandatory = true,
+ HelpMessage = "The name of the target instance to restore to.")]
[ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")]
public string TargetInstanceName { get; set; }
@@ -378,6 +402,9 @@ public class RestoreAzureRmSqlManagedDatabase
[Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet,
Mandatory = true,
HelpMessage = "The name of the target resource group to restore to.")]
+ [Parameter(ParameterSetName = LongTermRetentionBackupRestoreParameterSet,
+ Mandatory = true,
+ HelpMessage = "The name of the target resource group to restore to.")]
[ResourceGroupCompleter]
public string TargetResourceGroupName { get; set; }
@@ -484,6 +511,12 @@ protected override AzureSqlManagedDatabaseModel GetEntity()
model.RestorePointInTime = null;
break;
+ case LongTermRetentionBackupRestoreParameterSet:
+ model.CreateMode = "RestoreLongTermRetentionBackup";
+ model.LongTermRetentionBackupResourceId = ResourceId;
+ model.RestorePointInTime = null;
+ break;
+
default:
throw new ArgumentException("No ParameterSet name");
}
diff --git a/src/Sql/Sql/ManagedDatabase/Model/AzureSqlManagedDatabaseModel.cs b/src/Sql/Sql/ManagedDatabase/Model/AzureSqlManagedDatabaseModel.cs
index dcd724f651f8..bb2f97df1d7c 100644
--- a/src/Sql/Sql/ManagedDatabase/Model/AzureSqlManagedDatabaseModel.cs
+++ b/src/Sql/Sql/ManagedDatabase/Model/AzureSqlManagedDatabaseModel.cs
@@ -93,6 +93,11 @@ public class AzureSqlManagedDatabaseModel : AzureSqlManagedDatabaseBaseModel
///
public string RestorableDroppedDatabaseId { get; set; }
+ ///
+ /// Gets or sets the long term retention backup resource ID
+ ///
+ public string LongTermRetentionBackupResourceId { get; set; }
+
///
/// Construct AzureSqlManagedDatabaseModel
///
@@ -128,6 +133,7 @@ public AzureSqlManagedDatabaseModel(string resourceGroup, string managedInstance
FailoverGroupId = database.FailoverGroupId;
RecoverableDatabaseId = database.RecoverableDatabaseId;
RestorableDroppedDatabaseId = database.RestorableDroppedDatabaseId;
+ LongTermRetentionBackupResourceId = database.LongTermRetentionBackupResourceId;
}
}
}
diff --git a/src/Sql/Sql/ManagedDatabase/Services/AzureSqlManagedDatabaseAdapter.cs b/src/Sql/Sql/ManagedDatabase/Services/AzureSqlManagedDatabaseAdapter.cs
index 85081870406e..5a805d9b42c2 100644
--- a/src/Sql/Sql/ManagedDatabase/Services/AzureSqlManagedDatabaseAdapter.cs
+++ b/src/Sql/Sql/ManagedDatabase/Services/AzureSqlManagedDatabaseAdapter.cs
@@ -129,6 +129,7 @@ internal AzureSqlManagedDatabaseModel RestoreManagedDatabase(AzureSqlManagedData
RecoverableDatabaseId = model.RecoverableDatabaseId,
RestorableDroppedDatabaseId = model.RestorableDroppedDatabaseId,
SourceDatabaseId = model.SourceDatabaseId,
+ LongTermRetentionBackupResourceId = model.LongTermRetentionBackupResourceId
};
Management.Sql.Models.ManagedDatabase database = Communicator.RestoreDatabase(model.ResourceGroupName, model.ManagedInstanceName, model.Name, dbModel);
diff --git a/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs b/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs
index 51f8091d11ab..341bc2677692 100644
--- a/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs
+++ b/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs
@@ -296,6 +296,15 @@ public class NewAzureSqlManagedInstance : ManagedInstanceCmdletBase
[ResourceNameCompleter("Microsoft.Sql/instancePools")]
public string InstancePoolName { get; set; }
+ ///
+ /// Gets or sets the managed instance minimal tls version
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The Minimal Tls Version for the Sql Azure Managed Instance. Options are: None, 1.0, 1.1 and 1.2 ")]
+ [ValidateSet("None", "1.0", "1.1", "1.2")]
+ [PSArgumentCompleter("None", "1.0", "1.1", "1.2")]
+ public string MinimalTlsVersion { get; set; }
+
///
/// Gets or sets whether or not to run this cmdlet in the background as a job
///
@@ -425,7 +434,8 @@ public override void ExecuteCmdlet()
ProxyOverride = this.ProxyOverride,
TimezoneId = this.TimezoneId,
DnsZonePartner = this.DnsZonePartner,
- InstancePoolName = this.InstancePoolName
+ InstancePoolName = this.InstancePoolName,
+ MinimalTlsVersion = this.MinimalTlsVersion
});
return newEntity;
}
diff --git a/src/Sql/Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs b/src/Sql/Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs
index 0deddf6c04ca..eb5b37278aba 100644
--- a/src/Sql/Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs
+++ b/src/Sql/Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs
@@ -173,6 +173,15 @@ public class SetAzureSqlManagedInstance : ManagedInstanceCmdletBase
[ResourceNameCompleter("Microsoft.Sql/instancePools")]
public string InstancePoolName { get; set; }
+ ///
+ /// Gets or sets the managed instance minimal tls version
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The Minimal Tls Version for the Sql Azure Managed Instance. Options are: None, 1.0, 1.1 and 1.2 ")]
+ [ValidateSet("None", "1.0", "1.1", "1.2")]
+ [PSArgumentCompleter("None", "1.0", "1.1", "1.2")]
+ public string MinimalTlsVersion { get; set; }
+
///
/// Defines whether it is ok to skip the requesting of rule removal confirmation
///
@@ -266,7 +275,8 @@ protected override IEnumerable ApplyUserInputToMod
ProxyOverride = this.ProxyOverride,
Tags = TagsConversionHelper.CreateTagDictionary(Tag, validate: true),
Identity = model.FirstOrDefault().Identity ?? ResourceIdentityHelper.GetIdentityObjectFromType(this.AssignIdentity.IsPresent),
- InstancePoolName = this.InstancePoolName
+ InstancePoolName = this.InstancePoolName,
+ MinimalTlsVersion = this.MinimalTlsVersion
});
return updateData;
}
diff --git a/src/Sql/Sql/ManagedInstance/Model/AzureSqlManagedInstanceModel.cs b/src/Sql/Sql/ManagedInstance/Model/AzureSqlManagedInstanceModel.cs
index 2010efd9a0b1..401410facfb6 100644
--- a/src/Sql/Sql/ManagedInstance/Model/AzureSqlManagedInstanceModel.cs
+++ b/src/Sql/Sql/ManagedInstance/Model/AzureSqlManagedInstanceModel.cs
@@ -129,5 +129,10 @@ public class AzureSqlManagedInstanceModel
/// Gets or sets the instance pool name
///
public string InstancePoolName { get; set; }
+
+ ///
+ /// Gets or sets the managed instance minimal tls version
+ ///
+ public string MinimalTlsVersion { get; set; }
}
}
diff --git a/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs b/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs
index 79abe00ffca1..b6f4621fef32 100644
--- a/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs
+++ b/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs
@@ -126,7 +126,8 @@ public AzureSqlManagedInstanceModel UpsertManagedInstance(AzureSqlManagedInstanc
DnsZonePartner = model.DnsZonePartner,
InstancePoolId = model.InstancePoolName != null ?
string.Format("/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Sql/instancePools/{2}",
- Context.Subscription.Id, model.ResourceGroupName, model.InstancePoolName): null
+ Context.Subscription.Id, model.ResourceGroupName, model.InstancePoolName): null,
+ MinimalTlsVersion = model.MinimalTlsVersion
});
return CreateManagedInstanceModelFromResponse(resp);
@@ -201,6 +202,7 @@ private static AzureSqlManagedInstanceModel CreateManagedInstanceModelFromRespon
managedInstance.DnsZone = resp.DnsZone;
managedInstance.InstancePoolName = resp.InstancePoolId != null ?
new ResourceIdentifier(resp.InstancePoolId).ResourceName : null;
+ managedInstance.MinimalTlsVersion = resp.MinimalTlsVersion;
Management.Internal.Resources.Models.Sku sku = new Management.Internal.Resources.Models.Sku();
sku.Name = resp.Sku.Name;
diff --git a/src/Sql/Sql/Properties/AssemblyInfo.cs b/src/Sql/Sql/Properties/AssemblyInfo.cs
index b0c864a8d334..2f8a93541953 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.3.0")]
-[assembly: AssemblyFileVersion("2.3.0")]
+[assembly: AssemblyVersion("2.4.0")]
+[assembly: AssemblyFileVersion("2.4.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
#endif
diff --git a/src/Sql/Sql/Properties/Resources.Designer.cs b/src/Sql/Sql/Properties/Resources.Designer.cs
index ed19063181c3..fd4ade8571d8 100644
--- a/src/Sql/Sql/Properties/Resources.Designer.cs
+++ b/src/Sql/Sql/Properties/Resources.Designer.cs
@@ -789,6 +789,24 @@ internal static string RemoveAzureSqlInstanceActiveDirectoryAdministratorWarning
}
}
+ ///
+ /// Looks up a localized string similar to Permanantly removing the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'?.
+ ///
+ internal static string RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription {
+ get {
+ return ResourceManager.GetString("RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'?.
+ ///
+ internal static string RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning {
+ get {
+ return ResourceManager.GetString("RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Removing Azure Sql Server Active Directory Administrator on server '{0}'..
///
diff --git a/src/Sql/Sql/Properties/Resources.resx b/src/Sql/Sql/Properties/Resources.resx
index f465e3833d70..958c2f49bc50 100644
--- a/src/Sql/Sql/Properties/Resources.resx
+++ b/src/Sql/Sql/Properties/Resources.resx
@@ -589,4 +589,10 @@
You cannot change hardware family.
+
+ Permanantly removing the Long Term Retention backup '{0}' on database '{1}' on instance '{2}' in location '{3}'?
+
+
+ Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on instance '{2}' in location '{3}'?
+
\ No newline at end of file
diff --git a/src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs b/src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs
index f77575704530..155d8f08eb78 100644
--- a/src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs
+++ b/src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs
@@ -80,6 +80,15 @@ public class NewAzureSqlServer : AzureSqlServerCmdletBase
[PSArgumentCompleter("Enabled", "Disabled")]
public string PublicNetworkAccess { get; set; }
+ ///
+ /// Gets or sets the managed instance minimal tls version
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The Minimal Tls Version for the Sql Azure Managed Instance. Options are: 1.0, 1.1 and 1.2 ")]
+ [ValidateSet("1.0", "1.1", "1.2")]
+ [PSArgumentCompleter("1.0", "1.1", "1.2")]
+ public string MinimalTlsVersion { get; set; }
+
///
/// Gets or sets whether or not to run this cmdlet in the background as a job
///
@@ -140,6 +149,7 @@ public override void ExecuteCmdlet()
SqlAdministratorLogin = this.SqlAdministratorCredentials.UserName,
Tags = TagsConversionHelper.CreateTagDictionary(Tags, validate: true),
Identity = ResourceIdentityHelper.GetIdentityObjectFromType(this.AssignIdentity.IsPresent),
+ MinimalTlsVersion = this.MinimalTlsVersion,
PublicNetworkAccess = this.PublicNetworkAccess,
});
return newEntity;
diff --git a/src/Sql/Sql/Server/Cmdlet/SetAzureSqlServer.cs b/src/Sql/Sql/Server/Cmdlet/SetAzureSqlServer.cs
index dd8d815758ca..fce0023cbab3 100644
--- a/src/Sql/Sql/Server/Cmdlet/SetAzureSqlServer.cs
+++ b/src/Sql/Sql/Server/Cmdlet/SetAzureSqlServer.cs
@@ -74,6 +74,15 @@ public class SetAzureSqlServer : AzureSqlServerCmdletBase
[PSArgumentCompleter("Enabled", "Disabled")]
public string PublicNetworkAccess { get; set; }
+ ///
+ /// Gets or sets the sql server minimal tls version
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The Minimal Tls Version for the Sql Azure Managed Instance. Options are: 1.0, 1.1 and 1.2 ")]
+ [ValidateSet("1.0", "1.1", "1.2")]
+ [PSArgumentCompleter("1.0", "1.1", "1.2")]
+ public string MinimalTlsVersion { get; set; }
+
///
/// Defines whether it is ok to skip the requesting of rule removal confirmation
///
@@ -108,6 +117,7 @@ public class SetAzureSqlServer : AzureSqlServerCmdletBase
Location = model.FirstOrDefault().Location,
Identity = model.FirstOrDefault().Identity ?? ResourceIdentityHelper.GetIdentityObjectFromType(this.AssignIdentity.IsPresent),
PublicNetworkAccess = this.PublicNetworkAccess,
+ MinimalTlsVersion = this.MinimalTlsVersion,
});
return updateData;
}
diff --git a/src/Sql/Sql/Server/Model/AzureSqlServerModel.cs b/src/Sql/Sql/Server/Model/AzureSqlServerModel.cs
index 6b554f040d81..f9ee40a5379f 100644
--- a/src/Sql/Sql/Server/Model/AzureSqlServerModel.cs
+++ b/src/Sql/Sql/Server/Model/AzureSqlServerModel.cs
@@ -74,6 +74,10 @@ public class AzureSqlServerModel
public string ResourceId { get; set; }
///
+ /// Gets or sets the managed instance minimal tls version
+ ///
+ public string MinimalTlsVersion { get; set; }
+
/// Gets or sets the flag to control enable/disable public network access
///
public string PublicNetworkAccess { get; set; }
diff --git a/src/Sql/Sql/Server/Services/AzureSqlServerAdapter.cs b/src/Sql/Sql/Server/Services/AzureSqlServerAdapter.cs
index 7f523f03877c..47fc65ad200c 100644
--- a/src/Sql/Sql/Server/Services/AzureSqlServerAdapter.cs
+++ b/src/Sql/Sql/Server/Services/AzureSqlServerAdapter.cs
@@ -107,6 +107,7 @@ public AzureSqlServerModel UpsertServer(AzureSqlServerModel model)
AdministratorLoginPassword = model.SqlAdministratorPassword != null ? Decrypt(model.SqlAdministratorPassword) : null,
Version = model.ServerVersion,
Identity = model.Identity,
+ MinimalTlsVersion = model.MinimalTlsVersion,
PublicNetworkAccess = model.PublicNetworkAccess
});
@@ -147,7 +148,9 @@ private static AzureSqlServerModel CreateServerModelFromResponse(Management.Sql.
server.Identity = resp.Identity;
server.FullyQualifiedDomainName = resp.FullyQualifiedDomainName;
server.ResourceId = resp.Id;
+ server.MinimalTlsVersion = resp.MinimalTlsVersion;
server.PublicNetworkAccess = resp.PublicNetworkAccess;
+
return server;
}
diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/AzureSqlServerActiveDirectoryAdministratorCmdletBase.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/AzureSqlServerActiveDirectoryAdministratorCmdletBase.cs
index 4dba4ca7e271..8f6a4e2ec262 100644
--- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/AzureSqlServerActiveDirectoryAdministratorCmdletBase.cs
+++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/AzureSqlServerActiveDirectoryAdministratorCmdletBase.cs
@@ -12,8 +12,6 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
-using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
using Microsoft.Azure.Commands.Sql.Common;
using Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model;
diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/SetAzureSqlServerActiveDirectoryAdministrator.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/SetAzureSqlServerActiveDirectoryAdministrator.cs
index 509f6d01bcb9..cc27e2a6b619 100644
--- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/SetAzureSqlServerActiveDirectoryAdministrator.cs
+++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/SetAzureSqlServerActiveDirectoryAdministrator.cs
@@ -11,9 +11,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// ----------------------------------------------------------------------------------
-
-using Hyak.Common;
using Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model;
+using Microsoft.Rest.Azure;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -24,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Cmdlet
///
/// Cmdlet to create a new Azure SQL Server Active Directory administrator
///
- [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerActiveDirectoryAdministrator",ConfirmImpact = ConfirmImpact.Medium, SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerActiveDirectoryAdministratorModel))]
+ [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerActiveDirectoryAdministrator", ConfirmImpact = ConfirmImpact.Medium, SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerActiveDirectoryAdministratorModel))]
public class SetAzureSqlServerActiveDirectoryAdministrator : AzureSqlServerActiveDirectoryAdministratorCmdletBase
{
///
@@ -47,6 +46,16 @@ public class SetAzureSqlServerActiveDirectoryAdministrator : AzureSqlServerActiv
[ValidateNotNullOrEmpty()]
public Guid ObjectId { get; set; }
+ ///
+ /// Only Azure Active Directory authentication allowed
+ ///
+ [Parameter(Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ Position = 4,
+ HelpMessage = "Specifies if only Azure Active Directory authentication is allowed.")]
+ [ValidateNotNullOrEmpty()]
+ public bool? IsAzureOnlyAuthentication { get; set; }
+
///
/// Get the entities from the service
///
@@ -54,12 +63,16 @@ public class SetAzureSqlServerActiveDirectoryAdministrator : AzureSqlServerActiv
protected override IEnumerable GetEntity()
{
List currentActiveDirectoryAdmins = null;
+
try
{
- currentActiveDirectoryAdmins = new List()
+ AzureSqlServerActiveDirectoryAdministratorModel model = ModelAdapter.GetServerActiveDirectoryAdministrator(this.ResourceGroupName, this.ServerName);
+
+ if (model != null)
{
- ModelAdapter.GetServerActiveDirectoryAdministrator(this.ResourceGroupName, this.ServerName),
- };
+ currentActiveDirectoryAdmins = new List();
+ currentActiveDirectoryAdmins.Add(model);
+ }
}
catch (CloudException ex)
{
@@ -69,6 +82,14 @@ protected override IEnumerable
throw;
}
}
+ catch (Exception ex)
+ {
+ if ((ex.InnerException is CloudException ex1) &&
+ ex1.Response.StatusCode != System.Net.HttpStatusCode.NotFound)
+ {
+ throw ex.InnerException ?? ex;
+ }
+ }
return currentActiveDirectoryAdmins;
}
@@ -80,13 +101,14 @@ protected override IEnumerable
/// A list of models that was passed in
protected override IEnumerable ApplyUserInputToModel(IEnumerable model)
{
- List newEntity = new List();
+ List newEntity = new List();
newEntity.Add(new AzureSqlServerActiveDirectoryAdministratorModel()
{
ResourceGroupName = ResourceGroupName,
ServerName = ServerName,
DisplayName = DisplayName,
ObjectId = ObjectId,
+ IsAzureADOnlyAuthentication = IsAzureOnlyAuthentication,
});
return newEntity;
}
diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Model/AzureSqlServerActiveDirectoryAdministratorModel.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Model/AzureSqlServerActiveDirectoryAdministratorModel.cs
index 80efaabb8671..1d6a0a5a88e2 100644
--- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Model/AzureSqlServerActiveDirectoryAdministratorModel.cs
+++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Model/AzureSqlServerActiveDirectoryAdministratorModel.cs
@@ -40,5 +40,10 @@ public class AzureSqlServerActiveDirectoryAdministratorModel
/// Gets or sets the unique ID of the Azure SQL Server Active administrator admin object id
///
public Guid ObjectId { get; set; }
+
+ ///
+ /// Gets or sets the value to indicate if only Azure AD Only authentication is allowed
+ ///
+ public bool? IsAzureADOnlyAuthentication { get; set; }
}
}
diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs
index 01a515d04150..d3dafde0de59 100644
--- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs
+++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs
@@ -14,8 +14,7 @@
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model;
-using Microsoft.Azure.Commands.Sql.Services;
-using Microsoft.Azure.Management.Sql.LegacySdk.Models;
+using Microsoft.Azure.Management.Sql.Models;
using Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory;
using System;
using System.Collections.Generic;
@@ -113,10 +112,7 @@ internal ICollection ListServer
/// The upserted Azure SQL Server Active Directory administrator
internal AzureSqlServerActiveDirectoryAdministratorModel UpsertServerActiveDirectoryAdministrator(string resourceGroup, string serverName, AzureSqlServerActiveDirectoryAdministratorModel model)
{
- var resp = Communicator.CreateOrUpdate(resourceGroup, serverName, new ServerAdministratorCreateOrUpdateParameters()
- {
- Properties = GetActiveDirectoryInformation(model.DisplayName, model.ObjectId)
- });
+ var resp = Communicator.CreateOrUpdate(resourceGroup, serverName, GetActiveDirectoryInformation(model.DisplayName, model.ObjectId, model.IsAzureADOnlyAuthentication));
return CreateServerActiveDirectoryAdministratorModelFromResponse(resourceGroup, serverName, resp);
}
@@ -131,6 +127,19 @@ public void RemoveServerActiveDirectoryAdministrator(string resourceGroupName, s
Communicator.Remove(resourceGroupName, serverName);
}
+ ///
+ /// Disable Azure Active Directory only authentication on a Azure SQL Server
+ ///
+ /// The name of the resource group
+ /// The name of the Azure Sql ServerActiveDirectoryAdministrator Server
+ /// The upserted Azure SQL Server Active Directory administrator
+ internal AzureSqlServerActiveDirectoryAdministratorModel DisableAzureADOnlyAuthenticaion(string resourceGroup, string serverName)
+ {
+ var resp = Communicator.Disable(resourceGroup, serverName);
+
+ return CreateServerActiveDirectoryAdministratorModelFromResponse(resourceGroup, serverName, resp);
+ }
+
///
/// Converts the response from the service to a powershell database object
///
@@ -138,16 +147,21 @@ public void RemoveServerActiveDirectoryAdministrator(string resourceGroupName, s
/// The name of the Azure Sql ServerActiveDirectoryAdministrator Server
/// The service response
/// The converted model
- public static AzureSqlServerActiveDirectoryAdministratorModel CreateServerActiveDirectoryAdministratorModelFromResponse(string resourceGroup, string serverName, Management.Sql.LegacySdk.Models.ServerAdministrator admin)
+ public static AzureSqlServerActiveDirectoryAdministratorModel CreateServerActiveDirectoryAdministratorModelFromResponse(string resourceGroup, string serverName, Management.Sql.Models.ServerAzureADAdministrator admin)
{
- AzureSqlServerActiveDirectoryAdministratorModel model = new AzureSqlServerActiveDirectoryAdministratorModel();
-
- model.ResourceGroupName = resourceGroup;
- model.ServerName = serverName;
- model.DisplayName = admin.Properties.Login;
- model.ObjectId = admin.Properties.Sid;
+ if (admin != null)
+ {
+ AzureSqlServerActiveDirectoryAdministratorModel model = new AzureSqlServerActiveDirectoryAdministratorModel();
+
+ model.ResourceGroupName = resourceGroup;
+ model.ServerName = serverName;
+ model.DisplayName = admin.Login;
+ model.ObjectId = admin.Sid;
+ model.IsAzureADOnlyAuthentication = admin.AzureADOnlyAuthentication;
+ return model;
+ }
- return model;
+ return null;
}
///
@@ -155,8 +169,9 @@ public static AzureSqlServerActiveDirectoryAdministratorModel CreateServerActive
///
/// Azure Active Directory user or group display name
/// Azure Active Directory user or group object id
+ /// Allow only Azure Active Directory authentication
///
- protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformation(string displayName, Guid objectId)
+ protected ServerAzureADAdministrator GetActiveDirectoryInformation(string displayName, Guid objectId, bool? isAzureADOnlyAuthentication)
{
// Gets the default Tenant id for the subscriptions
Guid tenantId = GetTenantId();
@@ -164,7 +179,7 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat
// Check for a Azure Active Directory group. Recommended to always use group.
IEnumerable groupList = null;
- var filter = new ADObjectFilterOptions()
+ var filter = new ADObjectFilterOptions()
{
Id = (objectId != null && objectId != Guid.Empty) ? objectId.ToString() : null,
SearchString = displayName,
@@ -190,11 +205,13 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat
throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidADGroupNotSecurity, displayName));
}
- return new ServerAdministratorCreateOrUpdateProperties()
+
+ return new ServerAzureADAdministrator()
{
Login = group.DisplayName,
Sid = group.Id,
TenantId = tenantId,
+ AzureADOnlyAuthentication = isAzureADOnlyAuthentication,
};
}
@@ -238,11 +255,12 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat
// Only one user was found. Get the user display name and object id
var obj = userList.First();
- return new ServerAdministratorCreateOrUpdateProperties()
+ return new ServerAzureADAdministrator()
{
Login = displayName,
Sid = obj.Id,
TenantId = tenantId,
+ AzureADOnlyAuthentication = isAzureADOnlyAuthentication,
};
}
}
diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs
index 9f78a57fd735..c8c2556733c3 100644
--- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs
+++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs
@@ -14,8 +14,8 @@
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
-using Microsoft.Azure.Management.Sql.LegacySdk;
-using Microsoft.Azure.Management.Sql.LegacySdk.Models;
+using Microsoft.Azure.Management.Sql;
+using Microsoft.Azure.Management.Sql.Models;
using System.Collections.Generic;
namespace Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Services
@@ -68,27 +68,25 @@ public AzureSqlServerActiveDirectoryAdministratorCommunicator(IAzureContext cont
///
/// Gets the Azure SQL Server Active Directory administrator
///
- public Management.Sql.LegacySdk.Models.ServerAdministrator Get(string resourceGroupName, string serverName)
+ public Management.Sql.Models.ServerAzureADAdministrator Get(string resourceGroupName, string serverName)
{
- return GetCurrentSqlClient().ServerAdministrators.Get(resourceGroupName, serverName, ActiveDirectoryDefaultName).Administrator;
+ return GetCurrentSqlClient().ServerAzureADAdministrators.GetAsync(resourceGroupName, serverName).Result;
}
///
/// Lists Azure SQL Server Active Directory administrators
///
- public IList List(string resourceGroupName, string serverName)
+ public IEnumerable List(string resourceGroupName, string serverName)
{
- return GetCurrentSqlClient().ServerAdministrators.List(resourceGroupName, serverName).Administrators;
+ return GetCurrentSqlClient().ServerAzureADAdministrators.ListByServer(resourceGroupName, serverName);
}
///
/// Creates or updates a Azure SQL Server Active Directory Administrator
///
- public Management.Sql.LegacySdk.Models.ServerAdministrator CreateOrUpdate(string resourceGroupName, string serverName, ServerAdministratorCreateOrUpdateParameters parameters)
+ public Management.Sql.Models.ServerAzureADAdministrator CreateOrUpdate(string resourceGroupName, string serverName, ServerAzureADAdministrator parameters)
{
- // Always set the type to active directory
- parameters.Properties.AdministratorType = ActiveDirectoryDefaultType;
- return GetCurrentSqlClient().ServerAdministrators.CreateOrUpdate(resourceGroupName, serverName, ActiveDirectoryDefaultName, parameters).ServerAdministrator;
+ return GetCurrentSqlClient().ServerAzureADAdministrators.CreateOrUpdate(resourceGroupName, serverName, parameters);
}
///
@@ -96,7 +94,15 @@ public Management.Sql.LegacySdk.Models.ServerAdministrator CreateOrUpdate(string
///
public void Remove(string resourceGroupName, string serverName)
{
- GetCurrentSqlClient().ServerAdministrators.Delete(resourceGroupName, serverName, ActiveDirectoryDefaultName);
+ GetCurrentSqlClient().ServerAzureADAdministrators.DeleteWithHttpMessagesAsync(resourceGroupName, serverName);
+ }
+
+ ///
+ /// Disables Azure Active Directory only authentication on a Azure SQL Server
+ ///
+ public Management.Sql.Models.ServerAzureADAdministrator Disable(string resourceGroupName, string serverName)
+ {
+ return GetCurrentSqlClient().ServerAzureADAdministrators.DisableAzureADOnlyAuthenticationAsync(resourceGroupName, serverName).Result;
}
///
@@ -109,7 +115,7 @@ private SqlManagementClient GetCurrentSqlClient()
// Get the SQL management client for the current subscription
if (SqlClient == null)
{
- SqlClient = AzureSession.Instance.ClientFactory.CreateClient(Context, AzureEnvironment.Endpoint.ResourceManager);
+ SqlClient = AzureSession.Instance.ClientFactory.CreateArmClient(Context, AzureEnvironment.Endpoint.ResourceManager);
}
return SqlClient;
}
diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj
index 80f93c27e136..441176cdbdb8 100644
--- a/src/Sql/Sql/Sql.csproj
+++ b/src/Sql/Sql/Sql.csproj
@@ -21,7 +21,7 @@
-
+
@@ -44,4 +44,4 @@
-
\ No newline at end of file
+
diff --git a/src/Sql/Sql/help/Az.Sql.md b/src/Sql/Sql/help/Az.Sql.md
index 08179ef60b27..8e2082c438ed 100644
--- a/src/Sql/Sql/help/Az.Sql.md
+++ b/src/Sql/Sql/help/Az.Sql.md
@@ -62,14 +62,18 @@ Converts a vulnerability assessment scan results to Excel format.
### [Convert-AzSqlInstanceDatabaseVulnerabilityAssessmentScan](Convert-AzSqlInstanceDatabaseVulnerabilityAssessmentScan.md)
Converts a vulnerability assessment scan results to Excel format.
-### [Disable-AzSqlDatabaseSensitivityRecommendation](Disable-AzSqlDatabaseSensitivityRecommendation)
-Disables sensitivity recommendations on columns in the database.
+### [Disable-AzSqlDatabaseSensitivityRecommendation](Disable-AzSqlDatabaseSensitivityRecommendation.md)
+Disables (dismisses) sensitivity recommendations on columns in the database.
### [Disable-AzSqlInstanceAdvancedDataSecurity](Disable-AzSqlInstanceAdvancedDataSecurity.md)
Disables Advanced Data Security on a managed instance.
-### [Disable-AzSqlInstanceDatabaseSensitivityRecommendation](Disable-AzSqlInstanceDatabaseSensitivityRecommendation)
-Disbles sensitivity recommendations on columns in the Azure SQL managed instance database.
+### [Disable-AzSqlInstanceDatabaseSensitivityRecommendation](Disable-AzSqlInstanceDatabaseSensitivityRecommendation.md)
+Disables (dismisses) sensitivity recommendations on columns in the Azure SQL managed instance database.
+
+
+### [Disable-AzSqlServerActiveDirectoryOnlyAuthentication](Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md)
+Disables Azure AD only authentication for a specific SQL Server.
### [Disable-AzSqlServerAdvancedDataSecurity](Disable-AzSqlServerAdvancedDataSecurity.md)
Disables Advanced Data Security on a server.
@@ -77,14 +81,14 @@ Disables Advanced Data Security on a server.
### [Disable-AzSqlServerAdvancedThreatProtection](Disable-AzSqlServerAdvancedThreatProtection.md)
Disables Advanced Threat Protection on a server.
-### [Enable-AzSqlDatabaseSensitivityRecommendation](Enable-AzSqlDatabaseSensitivityRecommendation)
-Enables sensitivity recommendations on columns in the database.
+### [Enable-AzSqlDatabaseSensitivityRecommendation](Enable-AzSqlDatabaseSensitivityRecommendation.md)
+Enables sensitivity recommendations on columns (recommendations are enabled by default on all columns) in the database.
### [Enable-AzSqlInstanceAdvancedDataSecurity](Enable-AzSqlInstanceAdvancedDataSecurity.md)
Enables Advanced Data Security on a managed instance.
-### [Enable-AzSqlInstanceDatabaseSensitivityRecommendation](Enable-AzSqlInstanceDatabaseSensitivityRecommendation)
-Enables sensitivity recommendations on columns in the Azure SQL managed instance database.
+### [Enable-AzSqlInstanceDatabaseSensitivityRecommendation](Enable-AzSqlInstanceDatabaseSensitivityRecommendation.md)
+Enables sensitivity recommendations on columns (recommendations are enabled by default on all columns) in the Azure SQL managed instance database.
### [Enable-AzSqlServerAdvancedDataSecurity](Enable-AzSqlServerAdvancedDataSecurity.md)
Enables Advanced Data Security on a server.
@@ -110,11 +114,6 @@ Gets one or more Advisors for an Azure SQL Database.
### [Get-AzSqlDatabaseAudit](Get-AzSqlDatabaseAudit.md)
Gets the auditing settings of an Azure SQL database.
-### [Get-AzSqlDatabaseAuditing](Get-AzSqlDatabaseAuditing.md)
-**Important: This cmdlet is deprecated, [Get-AzSqlDatbaseAudit](https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqldatabaseaudit) is replacing it.**
-
-Gets the auditing settings of an Azure SQL database.
-
### [Get-AzSqlDatabaseBackupLongTermRetentionPolicy](Get-AzSqlDatabaseBackupLongTermRetentionPolicy.md)
Gets a database long term retention policy.
@@ -286,8 +285,11 @@ Returns information about SQL Database servers.
### [Get-AzSqlServerActiveDirectoryAdministrator](Get-AzSqlServerActiveDirectoryAdministrator.md)
Gets information about an Azure AD administrator for SQL Server.
+### [Get-AzSqlServerAdvancedDataSecurityPolicy](Get-AzSqlServerAdvancedDataSecurityPolicy.md)
+Gets Advanced Data Security policy of a server.
+
### [Get-AzSqlServerAdvancedThreatProtectionSetting](Get-AzSqlServerAdvancedThreatProtectionSetting.md)
-Gets Advanced Threat Protection policy of a server.
+Gets the advanced threat protection settings for a server.
### [Get-AzSqlServerAdvisor](Get-AzSqlServerAdvisor.md)
Gets one or more Advisors for an Azure SQL Server.
@@ -295,11 +297,6 @@ Gets one or more Advisors for an Azure SQL Server.
### [Get-AzSqlServerAudit](Get-AzSqlServerAudit.md)
Gets the auditing settings of an Azure SQL server.
-### [Get-AzSqlServerAuditing](Get-AzSqlServerAuditing.md)
-**Important: This cmdlet is deprecated, [Get-AzSqlServerAudit](https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlserveraudit) is replacing it.**
-
-Gets the auditing settings of an Azure SQL server.
-
### [Get-AzSqlServerCommunicationLink](Get-AzSqlServerCommunicationLink.md)
Gets communication links for elastic database transactions between database servers.
@@ -570,11 +567,6 @@ Modifies auto execute status of an Azure SQL Database Advisor.
### [Set-AzSqlDatabaseAudit](Set-AzSqlDatabaseAudit.md)
Changes the auditing settings for an Azure SQL database.
-### [Set-AzSqlDatabaseAuditing](Set-AzSqlDatabaseAuditing.md)
-**Important: This cmdlet is deprecated, [Set-AzSqlDatabaseAudit](https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqldatabaseaudit) is replacing it.**
-
-Changes the auditing settings for an Azure SQL database.
-
### [Set-AzSqlDatabaseBackupLongTermRetentionPolicy](Set-AzSqlDatabaseBackupLongTermRetentionPolicy.md)
Sets a server long term retention policy.
@@ -665,11 +657,6 @@ Updates the auto execute status of an Azure SQL Server Advisor.
### [Set-AzSqlServerAudit](Set-AzSqlServerAudit.md)
Changes the auditing settings of an Azure SQL server.
-### [Set-AzSqlServerAuditing](Set-AzSqlServerAuditing.md)
-**Important: This cmdlet is deprecated, [Set-AzSqlServerAudit](https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqlserveraudit) is replacing it.**
-
-Changes the auditing settings of an Azure SQL server.
-
### [Set-AzSqlServerDisasterRecoveryConfiguration](Set-AzSqlServerDisasterRecoveryConfiguration.md)
Modifies a database server recovery configuration.
@@ -727,6 +714,9 @@ Executes a failover of an Azure SQL Database Failover Group.
### [Switch-AzSqlDatabaseInstanceFailoverGroup](Switch-AzSqlDatabaseInstanceFailoverGroup.md)
Executes a failover of an Instance Failover Group.
+### [Update-AzSqlDatabaseAdvancedThreatProtectionSetting](Update-AzSqlDatabaseAdvancedThreatProtectionSetting.md)
+Sets a advanced threat protection settings on a database.
+
### [Update-AzSqlDatabaseVulnerabilityAssessmentSetting](Update-AzSqlDatabaseVulnerabilityAssessmentSetting.md)
Updates the vulnerability assessment settings of a database.
diff --git a/src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSetting.md b/src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSetting.md
index 7dcc5f58fca6..c9f088c67c40 100644
--- a/src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSetting.md
+++ b/src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSetting.md
@@ -14,9 +14,8 @@ Removes the advanced threat protection settings from a server.
## SYNTAX
```
-Clear-AzSqlServerAdvancedThreatProtectionSetting [-PassThru] -ServerName
- [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+Clear-AzSqlServerAdvancedThreatProtectionSetting [-PassThru] -ServerName [-ResourceGroupName]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
diff --git a/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md
new file mode 100644
index 000000000000..9412b526e601
--- /dev/null
+++ b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md
@@ -0,0 +1,134 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml
+Module Name: Az.Sql
+online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/disable-azsqlserveractivedirectoryonlyauthentication
+schema: 2.0.0
+---
+
+# Disable-AzSqlServerActiveDirectoryOnlyAuthentication
+
+## SYNOPSIS
+Disables Azure AD only authentication for a specific SQL Server.
+
+## SYNTAX
+
+```
+Disable-AzSqlServerActiveDirectoryOnlyAuthentication [-ServerName] [-ResourceGroupName]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **Disable-AzSqlServerActiveDirectoryOnlyAuthentication** cmdlet disables Azure Active Directory (Azure AD) only authentication requirement for an AzureSQL Server in the current subscription.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\>Disable-AzSqlServerActiveDirectoryOnlyAuthentication -ResourceGroupName "ResourceGroup01" -ServerName "Server01"
+ResourceGroupName ServerName DisplayName ObjectId IsAzureADOnlyAuthentication
+----------------- ---------- ----------- -------- -----------
+ResourceGroup01 Server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b False
+```
+
+This command disables Azure Active Directory (Azure AD) only authentication requirement for an AzureSQL server named Server01 that is associated with a resource group named ResourceGroup01.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The name of the resource group.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ServerName
+The name of the Azure SQL Server the Azure Active Directory administrator is in.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: 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: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel
+
+## NOTES
+
+## RELATED LINKS
+
+[Remove-AzSqlServerActiveDirectoryAdministrator](./Remove-AzSqlServerActiveDirectoryAdministrator.md)
+
+[Set-AzSqlServerActiveDirectoryAdministrator](./Set-AzSqlServerActiveDirectoryAdministrator.md)
+
+[Get-AzSqlServerActiveDirectoryAdministrator](./Get-AzSqlServerActiveDirectoryAdministrator.md)
+
+[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/)
diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md
new file mode 100644
index 000000000000..a44c65f6e4fb
--- /dev/null
+++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md
@@ -0,0 +1,158 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml
+Module Name: Az.Sql
+online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstancedatabasebackuplongtermretentionpolicy
+schema: 2.0.0
+---
+
+# Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy
+
+## SYNOPSIS
+Gets a managed database's long term retention policy
+
+## SYNTAX
+
+```
+Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-InstanceName] [-DatabaseName]
+ [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+## DESCRIPTION
+The **Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy** cmdlet gets the long term retention policy registered to this managed database.
+The policy is an Azure Backup resource used to define backup storage policy.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName test
+
+
+ResourceGroupName : testResourceGroup
+ManagedInstanceName : testInstance
+DatabaseName : test
+WeeklyRetention : P2W
+MonthlyRetention : PT0S
+YearlyRetention : PT0S
+WeekOfYear : 0
+Location :
+```
+
+Gets the current version of the long term retention policy for the database
+
+## PARAMETERS
+
+### -DatabaseName
+The name of the Azure Managed Database to use.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InstanceName
+The name of the Azure Managed Instance the database belongs to.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The name of the resource group.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel
+
+## NOTES
+
+## RELATED LINKS
+
+[Get-AzSqlInstanceDatabaseLongTermRetentionBackup](./Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md)
+
+[Remove-AzSqlInstanceDatabaseLongTermRetentionBackup](./Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md)
+
+[Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md)
+
+[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/)
\ No newline at end of file
diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md
new file mode 100644
index 000000000000..10c78f4e5cb5
--- /dev/null
+++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md
@@ -0,0 +1,296 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml
+Module Name: Az.Sql
+online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstancedatabaselongtermretentionbackup
+schema: 2.0.0
+---
+
+# Get-AzSqlInstanceDatabaseLongTermRetentionBackup
+
+## SYNOPSIS
+Gets long term retention backup(s).
+
+## SYNTAX
+
+### Location (Default)
+```
+Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-ResourceGroupName ]
+ [-OnlyLatestPerDatabase] [-DatabaseState ] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+### InstanceName
+```
+Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-InstanceName]
+ [-ResourceGroupName ] [-OnlyLatestPerDatabase] [-DatabaseState ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### DatabaseName
+```
+Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-InstanceName]
+ [-DatabaseName] [-ResourceGroupName ] [-OnlyLatestPerDatabase]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### BackupName
+```
+Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-InstanceName]
+ [-DatabaseName] [-BackupName] [-ResourceGroupName ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### GetBackupByResourceId
+```
+Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-ResourceId]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### GetBackupByInputObject
+```
+Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-InputObject]
+ [-BackupName] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### GetBackupsByInputObject
+```
+Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-InputObject]
+ [-OnlyLatestPerDatabase] [-DatabaseState ] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+## DESCRIPTION
+{{ Fill in the Description }}
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location southeastasia -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName test
+
+
+BackupExpirationTime : 3/10/2020 1:10:45 PM
+BackupName : 15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000
+BackupTime : 2/22/2020 6:04:15 AM
+DatabaseName : test
+DatabaseDeletionTime : 2/24/2020 2:56:44 PM
+Location : southeastasia
+ResourceId : /subscriptions/f46521f3-5bb0-4eea-a3c2-c2d5987df96b/resourceGroups/testResourceGroup/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManaged
+ Instances/testInstance/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000
+ManagedInstanceName : testInstance
+InstanceCreateTime : 10/17/2019 4:52:10 PM
+ResourceGroupName : testResourceGroup
+```
+
+Gets all long term retention backups for a particular database. Resource Group is optional.
+
+## PARAMETERS
+
+### -BackupName
+The name of the backup.
+
+```yaml
+Type: String
+Parameter Sets: BackupName, GetBackupByInputObject
+Aliases:
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DatabaseName
+The name of the Managed Database the backups are under.
+
+```yaml
+Type: String
+Parameter Sets: DatabaseName, BackupName
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DatabaseState
+The state of the database whose backups you want to find, Alive, Deleted, or All.
+Defaults to All
+
+```yaml
+Type: String
+Parameter Sets: Location, InstanceName, GetBackupsByInputObject
+Aliases:
+Accepted values: All, Deleted, Live
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+The database object to get backups for.
+
+```yaml
+Type: AzureSqlManagedDatabaseModel
+Parameter Sets: GetBackupByInputObject, GetBackupsByInputObject
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -InstanceName
+The name of the Managed Instance the backups are under.
+
+```yaml
+Type: String
+Parameter Sets: InstanceName, DatabaseName, BackupName
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Location
+The location of the backups' source Managed Instance.
+
+```yaml
+Type: String
+Parameter Sets: Location, InstanceName, DatabaseName, BackupName, GetBackupByResourceId
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -OnlyLatestPerDatabase
+Whether or not to only get the latest backup per database.
+Defaults to false.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: Location, InstanceName, DatabaseName, GetBackupsByInputObject
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The name of the resource group.
+
+```yaml
+Type: String
+Parameter Sets: Location, InstanceName, DatabaseName, BackupName
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The database Resource ID to get backups for.
+
+```yaml
+Type: String
+Parameter Sets: GetBackupByResourceId
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel
+
+## NOTES
+
+## RELATED LINKS
+
+[Remove-AzSqlInstanceDatabaseLongTermRetentionBackup](./Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md)
+
+[Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md)
+
+[Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md)
+
+[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/)
\ No newline at end of file
diff --git a/src/Sql/Sql/help/Get-AzSqlServerActiveDirectoryAdministrator.md b/src/Sql/Sql/help/Get-AzSqlServerActiveDirectoryAdministrator.md
index 3c7c3f6c2d05..a239884dabad 100644
--- a/src/Sql/Sql/help/Get-AzSqlServerActiveDirectoryAdministrator.md
+++ b/src/Sql/Sql/help/Get-AzSqlServerActiveDirectoryAdministrator.md
@@ -26,9 +26,9 @@ The **Get-AzSqlServerActiveDirectoryAdministrator** cmdlet gets information abou
### Example 1: Gets information about an administrator for a server
```
PS C:\>Get-AzSqlServerActiveDirectoryAdministrator -ResourceGroupName "ResourceGroup01" -ServerName "Server01"
-ResourceGroupName ServerName DisplayName ObjectId
------------------ ---------- ----------- --------
-ResourceGroup01 Server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
+ResourceGroupName ServerName DisplayName ObjectId IsAzureADOnlyAuthentication
+----------------- ---------- ----------- -------- -----------
+ResourceGroup01 Server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b true
```
This command gets information about an Azure AD administrator for a server named Server01 that is associated with a resource group named ResourceGroup01.
@@ -130,6 +130,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[Set-AzSqlServerActiveDirectoryAdministrator](./Set-AzSqlServerActiveDirectoryAdministrator.md)
+[Disable-AzSqlServerActiveDirectoryOnlyAuthentication](./Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md)
+
[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/)
diff --git a/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md b/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md
index e70578eba06e..e3eac2f23827 100644
--- a/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md
+++ b/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md
@@ -43,6 +43,7 @@ the primary to the secondary database.
$database = Get-AzSqlDatabase -DatabaseName $databasename -ResourceGroupName $primaryresourcegroupname -ServerName $primaryservername
$database | New-AzSqlDatabaseSecondary -PartnerResourceGroupName $secondaryresourcegroupname -PartnerServerName $secondaryservername -AllowConnections "All"
```
+
### 2: Establish Active Geo-Replication and specify the partner database name to be different than the source database name
```
$database = Get-AzSqlDatabase -DatabaseName $databasename -ResourceGroupName $primaryresourcegroupname -ServerName $primaryservername
diff --git a/src/Sql/Sql/help/New-AzSqlInstance.md b/src/Sql/Sql/help/New-AzSqlInstance.md
index 793712ebf461..b792f12153c5 100644
--- a/src/Sql/Sql/help/New-AzSqlInstance.md
+++ b/src/Sql/Sql/help/New-AzSqlInstance.md
@@ -18,7 +18,7 @@ New-AzSqlInstance [-Name] [-ResourceGroupName] -AdministratorC
-Location -SubnetId [-LicenseType ] [-StorageSizeInGB ] -VCore
-Edition -ComputeGeneration [-Collation ] [-PublicDataEndpointEnabled]
[-ProxyOverride ] [-TimezoneId ] [-Tag ] [-AssignIdentity]
- [-DnsZonePartner ] [-InstancePoolName ] [-AsJob] [-DefaultProfile ]
+ [-DnsZonePartner ] [-InstancePoolName ] [-AsJob] [-MinimalTlsVersion ] [-DefaultProfile ]
[-WhatIf] [-Confirm] []
```
@@ -308,6 +308,21 @@ Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
+### -MinimalTlsVersion
+The minimal TLS version to enforce for Managed instance
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -InstancePoolName
The instance pool to place this instance in.
diff --git a/src/Sql/Sql/help/New-AzSqlServer.md b/src/Sql/Sql/help/New-AzSqlServer.md
index 352826eb1e34..5c41748d7d0a 100644
--- a/src/Sql/Sql/help/New-AzSqlServer.md
+++ b/src/Sql/Sql/help/New-AzSqlServer.md
@@ -15,9 +15,8 @@ Creates a SQL Database server.
```
New-AzSqlServer -ServerName -SqlAdministratorCredentials -Location
- [-Tags ] [-ServerVersion ] [-AssignIdentity] [-PublicNetworkAccess ] [-AsJob]
- [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+ [-Tags ] [-ServerVersion ] [-AssignIdentity] [-AsJob] [-ResourceGroupName]
+ [-DefaultProfile ] [-PublicNetworkAccess ] [-MinimalTlsVersion ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -180,6 +179,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -MinimalTlsVersion
+The minimal TLS version to enforce for Sql Server
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Tags
Key-value pairs in the form of a hash table. For example:
@{key0="value0";key1=$null;key2="value2"}
diff --git a/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md
new file mode 100644
index 000000000000..c290e54e61e6
--- /dev/null
+++ b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md
@@ -0,0 +1,238 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml
+Module Name: Az.Sql
+online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/remove-azsqlinstancedatabaselongtermretentionbackup
+schema: 2.0.0
+---
+
+# Remove-AzSqlInstanceDatabaseLongTermRetentionBackup
+
+## SYNOPSIS
+Deletes a long term retention backup.
+
+## SYNTAX
+
+### RemoveBackupDefault (Default)
+```
+Remove-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-InstanceName]
+ [-DatabaseName] [-BackupName] [-ResourceGroupName ] [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### RemoveBackupByInputObject
+```
+Remove-AzSqlInstanceDatabaseLongTermRetentionBackup
+ [-InputObject] [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### RemoveBackupByResourceId
+```
+Remove-AzSqlInstanceDatabaseLongTermRetentionBackup [-ResourceId] [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **Remove-AzSqlInstanceDatabaseLongTermRetentionBackup** cmdlet deletes the backup specified.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Location southeastasia -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName test -BackupName 15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000
+```
+
+Deletes the backup with name 15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000
+
+## PARAMETERS
+
+### -BackupName
+The name of the backup.
+
+```yaml
+Type: String
+Parameter Sets: RemoveBackupDefault
+Aliases:
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DatabaseName
+The name of the Managed Database the backup is from.
+
+```yaml
+Type: String
+Parameter Sets: RemoveBackupDefault
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Force
+Skip confirmation message for performing the action
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+The Database Long Term Retention Backup object to remove.
+
+```yaml
+Type: AzureSqlManagedDatabaseLongTermRetentionBackupModel
+Parameter Sets: RemoveBackupByInputObject
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -InstanceName
+The name of the Managed Instance the backup is under.
+
+```yaml
+Type: String
+Parameter Sets: RemoveBackupDefault
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Location
+The location of the backups' source Managed Instance.
+
+```yaml
+Type: String
+Parameter Sets: RemoveBackupDefault
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The name of the resource group.
+
+```yaml
+Type: String
+Parameter Sets: RemoveBackupDefault
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The Resource ID of the Database Long Term Retention Backup to remove.
+
+```yaml
+Type: String
+Parameter Sets: RemoveBackupByResourceId
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel
+
+## NOTES
+
+## RELATED LINKS
+
+[Get-AzSqlInstanceDatabaseLongTermRetentionBackup](./Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md)
+
+[Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md)
+
+[Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md)
+
+[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/)
\ No newline at end of file
diff --git a/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md b/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md
index 4a4762fcd0fb..4e26d84f1010 100644
--- a/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md
+++ b/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md
@@ -94,8 +94,15 @@ Restore-AzSqlInstanceDatabase [-FromGeoBackup] [-ResourceGroupName] [-I
[]
```
+### LongTermRetentionBackupRestoreParameter
+```
+Restore-AzSqlInstanceDatabase [-FromLongTermRetentionBackup] [-SubscriptionId ] [-ResourceId]
+ -TargetInstanceDatabaseName -TargetInstanceName -TargetResourceGroupName [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
## DESCRIPTION
-The **Restore-AzSqlInstanceDatabase** cmdlet restores an instance database from a geo-redundant backup or a point in time in a live database.
+The **Restore-AzSqlInstanceDatabase** cmdlet restores an instance database from a geo-redundant backup, a point in time in a live database, or a long term retention backup.
The restored database is created as a new instance database.
## EXAMPLES
@@ -132,7 +139,7 @@ PS C:\> Restore-AzSqlinstanceDatabase -Name $deletedDatabase.Name -InstanceName
The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1'
The second command restores the the fetched database, from the specified point-in-time backup to the instance database named Database01_restored.
-### Example 4: Restore an deleted instance database from a point in time
+### Example 5: Restore an deleted instance database from a point in time
```
PS C:\> $deletedDatabase = Get-AzSqlDeletedInstanceDatabaseBackup -ResourceGroupName "ResourceGroup01" -InstanceName "managedInstance1" -DatabaseName "DB1"
PS C:\> Restore-AzSqlinstanceDatabase -InputObject $deletedDatabase[0] -PointInTime UTCDateTime -TargetInstanceDatabaseName "Database01_restored"
@@ -141,6 +148,36 @@ PS C:\> Restore-AzSqlinstanceDatabase -InputObject $deletedDatabase[0] -PointInT
The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1'
The second command restores the the fetched database, from the specified point-in-time backup to the instance database named Database01_restored using input object.
+### Example 6: Restore a database from LTR backup.
+```
+PS C:\> Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId /subscriptions/f46521f3-5bb0-4eea-a3c2-c2d5987df96b/resourceGroups/testResourceGroup/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/testInstance/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000 -TargetInstanceDatabaseName restoreTarget -TargetInstanceName testInstance -TargetResourceGroupName testResourceGroup
+
+
+Location : southeastasia
+Tags :
+Collation : SQL_Latin1_General_CP1_CI_AS
+Status : Online
+RestorePointInTime :
+DefaultSecondaryLocation : northeurope
+CatalogCollation :
+CreateMode :
+StorageContainerUri :
+StorageContainerSasToken :
+SourceDatabaseId :
+FailoverGroupId :
+RecoverableDatabaseId :
+RestorableDroppedDatabaseId :
+LongTermRetentionBackupResourceId :
+ResourceGroupName : testResourceGroup
+ManagedInstanceName : testInstance
+Name : restoreTarget
+CreationDate : 3/4/2020 8:12:56 AM
+EarliestRestorePoint : 3/4/2020 8:14:29 AM
+Id : /subscriptions/f46521f3-5bb0-4eea-a3c2-c2d5987df96b/resourceGroups/testResourceGroup/providers/Microsoft.Sql/managedInstances/testInstance/databases/restoreTarget
+```
+
+Restores LTR backup with the given resource ID (which can be found by running Get-AzSqlInstanceDatabaseLongTermRetentionBackup).
+
## PARAMETERS
### -AsJob
@@ -203,6 +240,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -FromLongTermRetentionBackup
+Restore from a Long Term Retention backup.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: LongTermRetentionBackupRestoreParameter
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -FromPointInTimeBackup
Restore from a point-in-time backup.
@@ -313,7 +365,7 @@ The resource id of Instance Database object to restore
```yaml
Type: System.String
-Parameter Sets: PointInTimeSameInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId
+Parameter Sets: PointInTimeSameInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, LongTermRetentionBackupRestoreParameter
Aliases:
Required: True
@@ -340,7 +392,7 @@ Source subscription id.
```yaml
Type: System.String
-Parameter Sets: PointInTimeSameInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeDeletedDatabasesSameInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters
+Parameter Sets: PointInTimeSameInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeDeletedDatabasesSameInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, LongTermRetentionBackupRestoreParameter
Aliases: SourceSubscriptionId
Required: False
@@ -371,7 +423,7 @@ If not specified, the target instance is the same as the source instance.
```yaml
Type: System.String
-Parameter Sets: PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureSqlManagedDatabaseModelInstanceDefinition, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, GeoRestoreFromGeoBackupSetNameFromGeoBackupObjectParameter, GeoRestoreFromGeoBackupSetNameFromResourceIdParameter, GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter
+Parameter Sets: PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureSqlManagedDatabaseModelInstanceDefinition, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, GeoRestoreFromGeoBackupSetNameFromGeoBackupObjectParameter, GeoRestoreFromGeoBackupSetNameFromResourceIdParameter, GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter, LongTermRetentionBackupRestoreParameter
Aliases:
Required: True
@@ -387,7 +439,7 @@ If not specified, the target resource group is the same as the source resource g
```yaml
Type: System.String
-Parameter Sets: PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureSqlManagedDatabaseModelInstanceDefinition, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, GeoRestoreFromGeoBackupSetNameFromGeoBackupObjectParameter, GeoRestoreFromGeoBackupSetNameFromResourceIdParameter, GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter
+Parameter Sets: PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureSqlManagedDatabaseModelInstanceDefinition, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, GeoRestoreFromGeoBackupSetNameFromGeoBackupObjectParameter, GeoRestoreFromGeoBackupSetNameFromResourceIdParameter, GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter, LongTermRetentionBackupRestoreParameter
Aliases:
Required: True
diff --git a/src/Sql/Sql/help/Set-AzSqlInstance.md b/src/Sql/Sql/help/Set-AzSqlInstance.md
index 71f09bc44348..8a23f9928add 100644
--- a/src/Sql/Sql/help/Set-AzSqlInstance.md
+++ b/src/Sql/Sql/help/Set-AzSqlInstance.md
@@ -17,26 +17,26 @@ Sets properties for an Azure SQL Database Managed Instance.
Set-AzSqlInstance [-Name] [-ResourceGroupName] [-AdministratorPassword ]
[-Edition ] [-ComputeGeneration ] [-LicenseType ] [-StorageSizeInGB ]
[-VCore ] [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ]
- [-AssignIdentity] [-InstancePoolName ] [-Force]
+ [-AssignIdentity] [-InstancePoolName ] [-MinimalTlsVersion ] [-Force]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### SetInstanceFromAzureSqlManagedInstanceModelInstanceDefinition
```
Set-AzSqlInstance [-InputObject] [-AdministratorPassword ]
- [-Edition ] [-ComputeGeneration ] [-LicenseType ] [-StorageSizeInGB ]
- [-VCore ] [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ]
- [-AssignIdentity] [-InstancePoolName ] [-Force]
- [-DefaultProfile ] [-WhatIf] [-Confirm] []
+ [-Edition ] [-LicenseType ] [-StorageSizeInGB ] [-VCore ]
+ [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ] [-AssignIdentity]
+ [-InstancePoolName ] [-Force] [-ComputeGeneration ] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
```
### SetInstanceFromAzureResourceId
```
Set-AzSqlInstance [-ResourceId] [-AdministratorPassword ] [-Edition ]
- [-ComputeGeneration ] [-LicenseType ] [-StorageSizeInGB ] [-VCore ]
- [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ] [-AssignIdentity]
- [-InstancePoolName ] [-Force] [-DefaultProfile ] [-WhatIf]
- [-Confirm] []
+ [-LicenseType ] [-StorageSizeInGB ] [-VCore ] [-PublicDataEndpointEnabled ]
+ [-ProxyOverride ] [-Tag ] [-AssignIdentity] [-InstancePoolName ] [-Force]
+ [-ComputeGeneration ] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
```
## DESCRIPTION
@@ -65,6 +65,7 @@ VCores : 16
StorageSizeInGB : 1024
InstancePoolName :
```
+
### Example 2: Change existing instance hardware generation using new value for -ComputeGeneration
```powershell
PS C:\> Set-AzSqlInstance -Name "managedinstance1" -ResourceGroupName "ResourceGroup01" -ComputeGeneration Gen5
@@ -295,6 +296,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -MinimalTlsVersion
+The minimal TLS version to enforce for Managed instance
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -ResourceGroupName
The name of the resource group.
diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md
new file mode 100644
index 000000000000..f86a4c303b2b
--- /dev/null
+++ b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md
@@ -0,0 +1,304 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml
+Module Name: Az.Sql
+online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqlinstancedatabasebackuplongtermretentionpolicy
+schema: 2.0.0
+---
+
+# Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy
+
+## SYNOPSIS
+The **Set-AzSqlInstanceDatabaseLongTermRetentionBackup** cmdlet sets a managed database's long term retention policy.
+
+## SYNTAX
+
+### WeeklyRetentionRequired (Default)
+```
+Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -WeeklyRetention [-InstanceName]
+ [-DatabaseName] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+### RemovePolicy
+```
+Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-RemovePolicy] [-InstanceName]
+ [-DatabaseName] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+### MonthlyRetentionRequired
+```
+Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-WeeklyRetention ] -MonthlyRetention
+ [-InstanceName] [-DatabaseName] [-ResourceGroupName]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### YearlyRetentionRequired
+```
+Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-WeeklyRetention ] [-MonthlyRetention ]
+ -YearlyRetention -WeekOfYear [-InstanceName] [-DatabaseName]
+ [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+## DESCRIPTION
+The **Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy** cmdlet sets the long term retention policy for this managed database.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName test -WeeklyRetention "P1W"
+
+
+ResourceGroupName : testResourceGroup
+ManagedInstanceName : testInstance
+DatabaseName : test
+WeeklyRetention : P1W
+MonthlyRetention : PT0S
+YearlyRetention : PT0S
+WeekOfYear : 0
+Location :
+```
+
+Configures the database's long term retention weekly policy to one week.
+
+### Example 2
+```
+PS C:\> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName target1 -RemovePolicy
+
+
+ResourceGroupName : testResourceGroup
+ManagedInstanceName : testInstance
+DatabaseName : target1
+WeeklyRetention : PT0S
+MonthlyRetention : PT0S
+YearlyRetention : PT0S
+WeekOfYear : 0
+Location :
+```
+
+
+This command removes the long term retention policy from the database.
+## PARAMETERS
+
+### -DatabaseName
+The name of the Azure Managed Database to use.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InstanceName
+The name of the Azure Managed Instance the database belongs to.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -MonthlyRetention
+The Monthly Retention.
+If just a number is passed instead of an ISO 8601 string, days will be assumed as the units.
+There is a minimum of 7 days and a maximum of 10 years.
+
+```yaml
+Type: String
+Parameter Sets: MonthlyRetentionRequired
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+```yaml
+Type: String
+Parameter Sets: YearlyRetentionRequired
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -RemovePolicy
+If provided, the policy for the database will be cleared.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: RemovePolicy
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The name of the resource group.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -WeeklyRetention
+The Weekly Retention.
+If just a number is passed instead of an ISO 8601 string, days will be assumed as the units.
+There is a minimum of 7 days and a maximum of 10 years.
+
+```yaml
+Type: String
+Parameter Sets: WeeklyRetentionRequired
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+```yaml
+Type: String
+Parameter Sets: MonthlyRetentionRequired, YearlyRetentionRequired
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -WeekOfYear
+The Week of Year, 1 to 52, to save for the Yearly Retention.
+
+```yaml
+Type: Int32
+Parameter Sets: YearlyRetentionRequired
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -YearlyRetention
+The Yearly Retention.
+If just a number is passed instead of an ISO 8601 string, days will be assumed as the units.
+There is a minimum of 7 days and a maximum of 10 years.
+
+```yaml
+Type: String
+Parameter Sets: YearlyRetentionRequired
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### System.Int32
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel
+
+## NOTES
+
+## RELATED LINKS
+
+[Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md)
+
+[Get-AzSqlInstanceDatabaseLongTermRetentionBackup](./Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md)
+
+[Remove-AzSqlInstanceDatabaseLongTermRetentionBackup](./Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md)
+
+[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/)
\ No newline at end of file
diff --git a/src/Sql/Sql/help/Set-AzSqlServer.md b/src/Sql/Sql/help/Set-AzSqlServer.md
index 4c7e12c78754..948da7a9da59 100644
--- a/src/Sql/Sql/help/Set-AzSqlServer.md
+++ b/src/Sql/Sql/help/Set-AzSqlServer.md
@@ -15,9 +15,8 @@ Modifies properties of a SQL Database server.
```
Set-AzSqlServer [-ServerName] [-SqlAdministratorPassword ] [-Tags ]
- [-ServerVersion ] [-AssignIdentity] [-PublicNetworkAccess ] [-Force]
- [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+ [-ServerVersion ] [-AssignIdentity] [-Force] [-ResourceGroupName]
+ [-DefaultProfile ] [-MinimalTlsVersion ] [-PublicNetworkAccess ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -169,6 +168,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -MinimalTlsVersion
+The minimal TLS version to enforce for Sql Server
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Tags
Specifies a dictionary of tags that this cmdlet associates with the server. Key-value pairs in the
form of a hash table set as tags on the server. For example:
diff --git a/src/Sql/Sql/help/Set-AzSqlServerActiveDirectoryAdministrator.md b/src/Sql/Sql/help/Set-AzSqlServerActiveDirectoryAdministrator.md
index 455d0849ebc2..863db122ca17 100644
--- a/src/Sql/Sql/help/Set-AzSqlServerActiveDirectoryAdministrator.md
+++ b/src/Sql/Sql/help/Set-AzSqlServerActiveDirectoryAdministrator.md
@@ -14,9 +14,9 @@ Provisions an Azure AD administrator for SQL Server.
## SYNTAX
```
-Set-AzSqlServerActiveDirectoryAdministrator [-DisplayName] [[-ObjectId] ] [-ServerName]
- [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+Set-AzSqlServerActiveDirectoryAdministrator [-DisplayName] [[-ObjectId] ]
+ [[-IsAzureOnlyAuthentication] ] [-ServerName] [-ResourceGroupName]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -98,6 +98,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -IsAzureOnlyAuthentication
+Specifies if only Azure Active Directory authentication is allowed.
+
+```yaml
+Type: System.Nullable`1[System.Boolean]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -ObjectId
Specifies the unique ID of the Azure AD administrator that this cmdlet provisions.
If the display name is not unique, you must specify a value for this parameter.
@@ -196,6 +211,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[Remove-AzSqlServerActiveDirectoryAdministrator](./Remove-AzSqlServerActiveDirectoryAdministrator.md)
+[Disable-AzSqlServerActiveDirectoryOnlyAuthentication](./Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md)
+
[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/)
diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1
index 17264d0bfe1e..f0ea5908da6e 100644
--- a/src/Storage/Storage.Management/Az.Storage.psd1
+++ b/src/Storage/Storage.Management/Az.Storage.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 1/21/2020
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.12.0'
+ModuleVersion = '1.13.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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Storage.dll',
@@ -195,10 +195,11 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Support set Table/Queue Encryption Keytype in Create Storage Account
- - New-AzRmStorageAccount
-* Show RequestId when StorageException don''t have ExtendedErrorInformation
-* Fix the Example 6 of cmdlet Start-AzStorageBlobCopy'
+ ReleaseNotes = '* Supported AllowProtectedAppendWrite in ImmutabilityPolicy
+ - ''Set-AzRmStorageContainerImmutabilityPolicy''
+* Added breaking change warning message for AzureStorageTable type change in a future release
+ - ''New-AzStorageTable''
+ - ''Get-AzStorageTable'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md
index 81bbb2aea571..df3461394725 100644
--- a/src/Storage/Storage.Management/ChangeLog.md
+++ b/src/Storage/Storage.Management/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.13.0
* Supported AllowProtectedAppendWrite in ImmutabilityPolicy
- `Set-AzRmStorageContainerImmutabilityPolicy`
* Added breaking change warning message for AzureStorageTable type change in a future release
diff --git a/src/Storage/Storage.Management/Properties/AssemblyInfo.cs b/src/Storage/Storage.Management/Properties/AssemblyInfo.cs
index 6166b2cf891e..34ef6d209521 100644
--- a/src/Storage/Storage.Management/Properties/AssemblyInfo.cs
+++ b/src/Storage/Storage.Management/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("1.12.0")]
-[assembly: AssemblyFileVersion("1.12.0")]
+[assembly: AssemblyVersion("1.13.0")]
+[assembly: AssemblyFileVersion("1.13.0")]
diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1
index 524a876ea6fb..6393d004ddd4 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 170681775200..35d80d6fc270 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# 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 22314d9a9984..4f981dc34bb9 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Subscription.dll'
diff --git a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1
index b0164cff0cf7..d043d3f6a6d7 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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.TrafficManager.dll'
diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1
index 888ed3a2111c..f94c8369007d 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: 1/21/2020
+# Generated on: 3/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.6.0'
+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.2'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll'
@@ -136,8 +136,11 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Set-AzWebapp and Set-AzWebappSlot supports AlwaysOn, MinTls and FtpsState properties
-* Fixing issue where setting HttpsOnly along with changing AppservicePlan at the same time using the single Set-AzWebApp Command, was resetting HttpsOnly to default value'
+ 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'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index 91d3baf03764..d2529dbd8745 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -18,8 +18,10 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.7.0
* Added Tag parameter for `New-AzAppServicePlan` and `Set-AzAppServicePlan`
-* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website
+* 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
diff --git a/src/Websites/Websites/Properties/AssemblyInfo.cs b/src/Websites/Websites/Properties/AssemblyInfo.cs
index f93b55b7ffc7..9cdffa56a175 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.6.0")]
-[assembly: AssemblyFileVersion("1.6.0")]
+[assembly: AssemblyVersion("1.7.0")]
+[assembly: AssemblyFileVersion("1.7.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Websites.Test")]
#endif
diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1
index 4b58d2c0c2d3..79ca5b0d4506 100644
--- a/tools/Az/Az.psd1
+++ b/tools/Az/Az.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 2/13/2020
+# Generated on: 3/5/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '3.5.0'
+ModuleVersion = '3.6.1'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -31,7 +31,6 @@ Copyright = 'Microsoft Corporation. All rights reserved.'
# Description of the functionality provided by this module
Description = 'Microsoft Azure PowerShell - Cmdlets to manage resources in Azure. This module is compatible with WindowsPowerShell and PowerShell Core.
-
For more information about the Az module, please visit the following: https://docs.microsoft.com/en-us/powershell/azure/'
# Minimum version of the PowerShell engine required by this module
@@ -53,11 +52,11 @@ 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.2'; },
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; },
@{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.Aks'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.2'; },
- @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.3.4'; },
+ @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.4.0'; },
@{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.Automation'; RequiredVersion = '1.3.6'; },
@{ModuleName = 'Az.Batch'; RequiredVersion = '2.0.2'; },
@@ -70,7 +69,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; },
@{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.6.1'; },
@{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; },
- @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.6'; },
+ @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.7'; },
@{ModuleName = 'Az.DeploymentManager'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.2'; },
@{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; },
@@ -79,15 +78,15 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; },
@{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.4.0'; },
@{ModuleName = 'Az.HDInsight'; RequiredVersion = '3.0.3'; },
@{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.0.1'; },
- @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.1.0'; },
+ @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.2.0'; },
@{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.1'; },
@{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.0'; },
- @{ModuleName = 'Az.Network'; RequiredVersion = '2.3.1'; },
+ @{ModuleName = 'Az.Monitor'; RequiredVersion = '1.6.1'; },
+ @{ModuleName = 'Az.Network'; RequiredVersion = '2.3.2'; },
@{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '1.3.4'; },
@{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.2.0'; },
@@ -96,17 +95,17 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; },
@{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '2.7.0'; },
@{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.2.1'; },
@{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; },
- @{ModuleName = 'Az.Resources'; RequiredVersion = '1.11.0'; },
+ @{ModuleName = 'Az.Resources'; RequiredVersion = '1.12.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.3.0'; },
+ @{ModuleName = 'Az.Sql'; RequiredVersion = '2.4.0'; },
@{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; },
- @{ModuleName = 'Az.Storage'; RequiredVersion = '1.12.0'; },
+ @{ModuleName = 'Az.Storage'; RequiredVersion = '1.13.0'; },
@{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.2.3'; },
@{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.1'; },
@{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.3'; },
- @{ModuleName = 'Az.Websites'; RequiredVersion = '1.6.0'; })
+ @{ModuleName = 'Az.Websites'; RequiredVersion = '1.7.0'; })
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
@@ -162,22 +161,20 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '3.5.0 - February 2020
+ ReleaseNotes = '3.6.1 - March 2020
Az.Accounts
-* Added SubscriptionId, TenantId, and execution time into data of client side telemetry
-
-Az.Automation
-* Fixed typo in Example 1 in reference documentation for ''New-AzAutomationSoftwareUpdateConfiguration''
+* Open Azure PowerShell survey page in ''Send-Feedback'' [#11020]
+* Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021]
+* Added Az version in UserAgent
-Az.CognitiveServices
-* Updated SDK to 7.0
-* Improved error message when server responses empty body
+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]
-Az.Compute
-* Allowed empty value for ProximityPlacementGroupId during update
-
-Az.FrontDoor
-* Added cmdlet to get managed rule definitions that can be used in WAF
+Az.DataLakeStore
+* Added reference to System.Buffers explicitly in csproj and psd1.
Az.IotHub
* Added support to manage devices in an Iot Hub. New Cmdlets are:
@@ -185,45 +182,67 @@ Az.IotHub
- ''Get-AzIotHubDevice''
- ''Remove-AzIotHubDevice''
- ''Set-AzIotHubDevice''
-
-Az.KeyVault
-* Fixed duplicated text for Add-AzKeyVaultKey.md
+* 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.
Az.Monitor
-* Fixed description of the Get-AzLog cmdlet.
-* A new parameter called ActionGroupId was added to ''New-AzMetricAlertRuleV2'' command.
- - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup).
+* Fixed output value for ''Get-AzMetricDefinition'' [#9714]
Az.Network
-* Added one extra parameter note for parameter ''-EnableProxyProtocol'' for ''New-AzPrivateLinkService'' cmdlet.
-* Fixed FilterData example in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md.
-* Added Packet Capture example for capture all inner and outer packets in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md.
-* Supported Azure Firewall Policy on VNet Firewalls
- - No new cmdlets are added. Relaxing the restriction for firewall policy on VNet firewalls
-
-Az.RecoveryServices
-* Added Support for Restore-as-files for SQL Databases.
+* 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''
Az.Resources
-* Refactored template deployment cmdlets
- - Added new cmdlets for managing deployments at management group: *-AzManagementGroupDeployment
- - Added new cmdlets for managing deployments at tenant scope: *-AzTenantDeployment
- - Refactored *-AzDeployment cmdlets to work specifically at subscription scope
- - Created aliases *-AzSubscriptionDeployment for *-AzDeployment cmdlets
-* Fixed ''Update-AzADApplication'' when parameter ''AvailableToOtherTenants'' is not set
-* Removed ApplicationObjectWithoutCredentialParameterSet to avoid AmbiguousParameterSetException.
-* Regenerated help files
+* 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
Az.Sql
-* Added support for cross subscription point in time restore on Managed Instances.
-* Added support for changing existing Sql Managed Instance hardware generation
-* Fixed ''Update-AzSqlServerVulnerabilityAssessmentSetting'' help examples: parameter/property output - EmailAdmins
-
-Az.SqlVirtualMachine
-* Added cmdlets for Availability Group Listener
-
-Az.StorageSync
-* Updated supported character sets in ''Invoke-AzStorageSyncCompatibilityCheck''.
+* 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''
+
+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
'
# 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 735d62d165b5..0100563ac21f 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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.CommonModule.PSAzureServiceProfile, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.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.ApiManagement.ServiceManagement.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll.json
index 4881206a09b3..453924d83844 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll.json
@@ -7781,6 +7781,7 @@
"SigninPolicyName": "System.String",
"ProfileEditingPolicyName": "System.String",
"PasswordResetPolicyName": "System.String",
+ "SigninTenant": "System.String",
"Id": "System.String",
"ResourceGroupName": "System.String",
"ServiceName": "System.String",
@@ -26656,6 +26657,7 @@
"SigninPolicyName": "System.String",
"ProfileEditingPolicyName": "System.String",
"PasswordResetPolicyName": "System.String",
+ "SigninTenant": "System.String",
"Id": "System.String",
"ResourceGroupName": "System.String",
"ServiceName": "System.String",
@@ -27004,6 +27006,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "SigninTenant",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": [
@@ -27402,6 +27422,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "SigninTenant",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "DefaultProfile",
@@ -57484,6 +57528,7 @@
"SigninPolicyName": "System.String",
"ProfileEditingPolicyName": "System.String",
"PasswordResetPolicyName": "System.String",
+ "SigninTenant": "System.String",
"Id": "System.String",
"ResourceGroupName": "System.String",
"ServiceName": "System.String",
@@ -57705,6 +57750,7 @@
"SigninPolicyName": "System.String",
"ProfileEditingPolicyName": "System.String",
"PasswordResetPolicyName": "System.String",
+ "SigninTenant": "System.String",
"Id": "System.String",
"ResourceGroupName": "System.String",
"ServiceName": "System.String",
@@ -57896,6 +57942,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "SigninTenant",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "PassThru",
"AliasList": [],
@@ -58312,6 +58376,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "SigninTenant",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "PassThru",
@@ -58397,6 +58485,7 @@
"SigninPolicyName": "System.String",
"ProfileEditingPolicyName": "System.String",
"PasswordResetPolicyName": "System.String",
+ "SigninTenant": "System.String",
"Id": "System.String",
"ResourceGroupName": "System.String",
"ServiceName": "System.String",
@@ -58641,6 +58730,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "SigninTenant",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "PassThru",
@@ -58901,6 +59014,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "SigninTenant",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "PassThru",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll.json
index 42570a3902e7..787fdba7790e 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll.json
@@ -14,12 +14,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -31,11 +31,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -160,12 +162,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -177,11 +179,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -323,7 +327,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -363,7 +367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -456,12 +460,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -473,11 +477,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -631,7 +637,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -683,7 +689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -794,12 +800,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -811,11 +817,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -1302,12 +1310,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -1319,11 +1327,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -1827,7 +1837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementNetworkStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementNetworkStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementNetworkStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectivityStatus": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[]",
"Location": "System.String",
@@ -1883,12 +1893,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -1900,11 +1910,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -2121,12 +2133,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -2138,11 +2150,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -2551,12 +2565,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -2568,11 +2582,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -2771,12 +2787,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -2788,11 +2804,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -3109,12 +3127,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -3126,11 +3144,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -3345,7 +3365,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -3391,7 +3411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3498,7 +3518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -3573,7 +3593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion",
"GenericTypeArguments": [],
@@ -3591,7 +3611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"GenericTypeArguments": [],
@@ -3609,7 +3629,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate",
"GenericTypeArguments": [],
@@ -3627,7 +3647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -3877,7 +3897,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -3935,7 +3955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4048,7 +4068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -4135,7 +4155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion",
"GenericTypeArguments": [],
@@ -4159,7 +4179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"GenericTypeArguments": [],
@@ -4183,7 +4203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate",
"GenericTypeArguments": [],
@@ -4207,7 +4227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -4367,7 +4387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"HostnameType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
@@ -4445,7 +4465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4602,7 +4622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -4755,7 +4775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4864,7 +4884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -5040,7 +5060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5313,7 +5333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5637,7 +5657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
"VirtualNetwork": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
@@ -5734,7 +5754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -5877,7 +5897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -5988,7 +6008,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -6302,7 +6322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"EncodedCertificate": "System.String",
@@ -6580,7 +6600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -7002,12 +7022,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -7019,11 +7039,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -7148,12 +7170,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -7165,11 +7187,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -7350,12 +7374,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -7367,11 +7391,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -7576,12 +7602,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -7593,11 +7619,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -8084,12 +8112,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -8101,11 +8129,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -8230,12 +8260,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -8247,11 +8277,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -8468,12 +8500,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -8485,11 +8517,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -8742,12 +8776,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -8759,11 +8793,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -8888,12 +8924,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -8905,11 +8941,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -9051,7 +9089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9172,7 +9210,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -9265,12 +9303,12 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
+ "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
"Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
@@ -9282,11 +9320,13 @@
"AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
"Capacity": "System.Int32",
"EnableClientCertificate": "System.Nullable`1[System.Boolean]",
- "OrganizationName": "System.String",
- "ResourceGroupName": "System.String",
+ "CreatedTimeUtc": "System.Nullable`1[System.DateTime]",
"PublisherEmail": "System.String",
+ "ResourceGroupName": "System.String",
+ "OrganizationName": "System.String",
"ScmUrl": "System.String",
"ManagementApiUrl": "System.String",
+ "DeveloperPortalUrl": "System.String",
"PortalUrl": "System.String",
"RuntimeRegionalUrl": "System.String",
"RuntimeUrl": "System.String",
@@ -9440,7 +9480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9573,7 +9613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -9815,7 +9855,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"HostnameType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
@@ -9866,7 +9906,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -9932,7 +9972,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10049,7 +10089,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"GenericTypeArguments": [],
@@ -10059,7 +10099,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType",
"TenantId": "System.String",
@@ -10105,7 +10145,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10200,7 +10240,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10295,7 +10335,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -10352,7 +10392,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate",
"GenericTypeArguments": [],
@@ -10362,7 +10402,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"EncodedCertificate": "System.String",
@@ -10409,7 +10449,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -10465,7 +10505,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10573,7 +10613,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.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.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -10585,7 +10625,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
"VirtualNetwork": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
@@ -10642,6 +10682,18 @@
"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.Void": {
"Namespace": "System",
"Name": "System.Void",
@@ -10842,7 +10894,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus",
"GenericTypeArguments": [],
@@ -10852,7 +10904,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LastUpdated": "System.DateTime",
"LastStatusChange": "System.DateTime",
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 db75affbdc0b..bddb7af016ec 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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreChildItemSummary, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.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.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.6.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.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.IotHub.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json
index 98649470f748..7282b620fcaf 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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2495,6 +2495,60 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "Children",
+ "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
+ },
+ {
+ "Name": "ParentDeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "DefaultProfile",
"AliasList": [
@@ -2540,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -2623,6 +2677,54 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Children",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ParentDeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "AuthMethod",
@@ -2630,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2739,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2889,6 +2991,30 @@
"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",
@@ -3005,6 +3131,54 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Children",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ParentDeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "AuthMethod",
@@ -3012,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3121,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3271,6 +3445,30 @@
"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",
@@ -3363,6 +3561,54 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Children",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ParentDeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "AuthMethod",
@@ -3370,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3479,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3629,6 +3875,30 @@
"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",
@@ -3680,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3789,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3939,6 +4209,30 @@
"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",
@@ -3984,11 +4278,11 @@
"AliasList": []
},
{
- "VerbName": "Get",
- "NounName": "AzIotHubDevice",
- "Name": "Get-AzIotHubDevice",
- "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDevice",
- "SupportsShouldProcess": false,
+ "VerbName": "Add",
+ "NounName": "AzIotHubDeviceChildren",
+ "Name": "Add-AzIotHubDeviceChildren",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.AddAzIotHubDeviceChildren",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
"DefaultParameterSetName": "ResourceSet",
@@ -3996,22 +4290,11 @@
{
"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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "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",
"Properties": {
- "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
- "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
- "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
- "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "ConnectionStateUpdatedTime": "System.DateTime",
- "StatusUpdatedTime": "System.DateTime",
- "LastActivityTime": "System.DateTime",
- "CloudToDeviceMessageCount": "System.Int32",
- "Id": "System.String",
- "GenerationId": "System.String",
- "ETag": "System.String",
- "StatusReason": "System.String",
- "Scope": "System.String"
+ "ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
+ "DeviceId": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4053,21 +4336,6 @@
"ParameterSets": [
"__AllParameterSets"
]
- },
- {
- "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.1.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {},
- "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
}
],
"Parameters": [
@@ -4077,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -4203,6 +4471,42 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "Children",
+ "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
+ },
+ {
+ "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": [
@@ -4248,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -4326,6 +4630,54 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Children",
+ "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": 2,
+ "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,
@@ -4442,6 +4794,54 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Children",
+ "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": 3,
+ "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,
@@ -4534,6 +4934,54 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Children",
+ "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": 2,
+ "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,
@@ -4583,6 +5031,30 @@
{
"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",
@@ -4625,52 +5097,39 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Add-AzIotHubDCL"
+ ]
},
{
- "VerbName": "Remove",
+ "VerbName": "Get",
"NounName": "AzIotHubDevice",
- "Name": "Remove-AzIotHubDevice",
- "ClassName": "Microsoft.Azure.Commands.Management.IotHub.RemoveAzIotHubDevice",
- "SupportsShouldProcess": true,
+ "Name": "Get-AzIotHubDevice",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDevice",
+ "SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
"DefaultParameterSetName": "ResourceSet",
"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": "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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "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",
"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]",
+ "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
+ "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
+ "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
+ "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
+ "ConnectionStateUpdatedTime": "System.DateTime",
+ "StatusUpdatedTime": "System.DateTime",
+ "LastActivityTime": "System.DateTime",
+ "CloudToDeviceMessageCount": "System.Int32",
"Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Location": "System.String",
- "Subscriptionid": "System.String",
- "Resourcegroup": "System.String"
+ "GenerationId": "System.String",
+ "ETag": "System.String",
+ "StatusReason": "System.String",
+ "Scope": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4709,31 +5168,89 @@
}
]
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
},
{
- "Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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",
"Properties": {},
- "ElementType": null,
+ "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
+ "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.2.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": "ResourceId",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4751,7 +5268,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "IotHubName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4769,7 +5286,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DeviceId",
+ "Name": "IotHubName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4787,12 +5304,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PassThru",
+ "Name": "DeviceId",
"AliasList": [],
"Type": {
- "Namespace": "System.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": [],
@@ -4802,7 +5319,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
"Name": "DefaultProfile",
@@ -4849,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -4932,30 +5449,6 @@
"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",
@@ -5072,30 +5565,6 @@
"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",
@@ -5188,30 +5657,6 @@
"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",
@@ -5256,30 +5701,6 @@
{
"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",
@@ -5325,95 +5746,99 @@
"AliasList": []
},
{
- "VerbName": "Set",
- "NounName": "AzIotHubDevice",
- "Name": "Set-AzIotHubDevice",
- "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDevice",
- "SupportsShouldProcess": true,
+ "VerbName": "Get",
+ "NounName": "AzIotHubDeviceChildren",
+ "Name": "Get-AzIotHubDeviceChildren",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDeviceChildren",
+ "SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ResourceSetForStatus",
+ "DefaultParameterSetName": "ResourceSet",
"OutputTypes": [
{
"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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "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",
"Properties": {
- "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
- "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
- "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
- "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "ConnectionStateUpdatedTime": "System.DateTime",
- "StatusUpdatedTime": "System.DateTime",
- "LastActivityTime": "System.DateTime",
- "CloudToDeviceMessageCount": "System.Int32",
+ "ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
+ "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"
+ ]
+ },
+ {
+ "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",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "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.2.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",
- "GenerationId": "System.String",
- "ETag": "System.String",
- "StatusReason": "System.String",
- "Scope": "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.1.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"
+ "Name": "System.String",
+ "Type": "System.String",
+ "Location": "System.String",
+ "Subscriptionid": "System.String",
+ "Resourcegroup": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5529,248 +5954,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "AuthMethod",
- "AliasList": [],
- "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.1.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": "Status",
- "AliasList": [],
- "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.1.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": "StatusReason",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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": "EdgeEnabled",
- "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": "DefaultProfile",
"AliasList": [
@@ -5807,7 +5990,7 @@
],
"ParameterSets": [
{
- "Name": "InputObjectSetForAuth",
+ "Name": "InputObjectSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -5816,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -5894,115 +6077,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AuthMethod",
- "AliasList": [],
- "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.1.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
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -6050,63 +6124,21 @@
]
},
{
- "Name": "InputObjectSetForStatus",
+ "Name": "ResourceSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "ResourceGroupName",
"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.1.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"
- },
+ "Namespace": "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,
@@ -6115,12 +6147,12 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DeviceId",
+ "Name": "IotHubName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -6144,18 +6176,9502 @@
},
{
"ParameterMetadata": {
- "Name": "Status",
+ "Name": "DeviceId",
"AliasList": [],
"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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "Equals",
+ "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": 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": [
+ "Get-AzIotHubDCL"
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzIotHubDeviceConnectionString",
+ "Name": "Get-AzIotHubDeviceConnectionString",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDeviceConnectionString",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "DeviceId": "System.String",
+ "ConnectionString": "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.2.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": false
+ },
+ {
+ "Name": "KeyType",
+ "AliasList": [],
+ "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",
+ "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": "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.2.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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyType",
+ "AliasList": [],
+ "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",
+ "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": "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyType",
+ "AliasList": [],
+ "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",
+ "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": "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyType",
+ "AliasList": [],
+ "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",
+ "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": "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-AzIotHubDCS"
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzIotHubDeviceParent",
+ "Name": "Get-AzIotHubDeviceParent",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDeviceParent",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
+ "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
+ "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
+ "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
+ "ConnectionStateUpdatedTime": "System.DateTime",
+ "StatusUpdatedTime": "System.DateTime",
+ "LastActivityTime": "System.DateTime",
+ "CloudToDeviceMessageCount": "System.Int32",
+ "Id": "System.String",
+ "GenerationId": "System.String",
+ "ETag": "System.String",
+ "StatusReason": "System.String",
+ "Scope": "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.2.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.2.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": []
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzIotHubDevice",
+ "Name": "Remove-AzIotHubDevice",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.RemoveAzIotHubDevice",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "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": "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.2.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": "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": "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.2.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": 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
+ }
+ ]
+ },
+ {
+ "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": 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
+ }
+ ]
+ },
+ {
+ "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": 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
+ }
+ ]
+ },
+ {
+ "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": "Remove",
+ "NounName": "AzIotHubDeviceChildren",
+ "Name": "Remove-AzIotHubDeviceChildren",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.RemoveAzIotHubDeviceChildren",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "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": "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.2.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": "Children",
+ "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
+ },
+ {
+ "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": "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.2.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": "Children",
+ "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": 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
+ }
+ ]
+ },
+ {
+ "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": "Children",
+ "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": 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
+ }
+ ]
+ },
+ {
+ "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": "Children",
+ "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": 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
+ }
+ ]
+ },
+ {
+ "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": [
+ "Remove-AzIotHubDCL"
+ ]
+ },
+ {
+ "VerbName": "Set",
+ "NounName": "AzIotHubDevice",
+ "Name": "Set-AzIotHubDevice",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDevice",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSetForStatus",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
+ "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
+ "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
+ "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
+ "ConnectionStateUpdatedTime": "System.DateTime",
+ "StatusUpdatedTime": "System.DateTime",
+ "LastActivityTime": "System.DateTime",
+ "CloudToDeviceMessageCount": "System.Int32",
+ "Id": "System.String",
+ "GenerationId": "System.String",
+ "ETag": "System.String",
+ "StatusReason": "System.String",
+ "Scope": "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.2.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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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": "Status",
+ "AliasList": [],
+ "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",
+ "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": "StatusReason",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "EdgeEnabled",
+ "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": "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": "InputObjectSetForAuth",
+ "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.2.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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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
+ },
+ "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": "InputObjectSetForStatus",
+ "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.2.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": "Status",
+ "AliasList": [],
+ "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",
+ "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
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StatusReason",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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",
+ "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": "InputObjectSetForEdgeEnabled",
+ "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.2.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": "EdgeEnabled",
+ "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": 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": "ResourceSetForAuth",
+ "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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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
+ },
+ "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": "ResourceSetForStatus",
+ "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": "Status",
+ "AliasList": [],
+ "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",
+ "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
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StatusReason",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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",
+ "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": "ResourceSetForEdgeEnabled",
+ "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": "EdgeEnabled",
+ "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": 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": "ResourceIdSetForAuth",
+ "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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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
+ },
+ "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": "ResourceIdSetForStatus",
+ "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": "Status",
+ "AliasList": [],
+ "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",
+ "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
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StatusReason",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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",
+ "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": "ResourceIdSetForEdgeEnabled",
+ "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": "EdgeEnabled",
+ "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": 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": "Set",
+ "NounName": "AzIotHubDeviceParent",
+ "Name": "Set-AzIotHubDeviceParent",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDeviceParent",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
+ "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
+ "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
+ "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
+ "ConnectionStateUpdatedTime": "System.DateTime",
+ "StatusUpdatedTime": "System.DateTime",
+ "LastActivityTime": "System.DateTime",
+ "CloudToDeviceMessageCount": "System.Int32",
+ "Id": "System.String",
+ "GenerationId": "System.String",
+ "ETag": "System.String",
+ "StatusReason": "System.String",
+ "Scope": "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.2.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": "ParentDeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "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.2.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": "ParentDeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "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": "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": "ParentDeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 3,
+ "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": "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": "ParentDeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "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": "Add",
+ "NounName": "AzIotHubModule",
+ "Name": "Add-AzIotHubModule",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.AddAzIotHubModule",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
+ "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
+ "ConnectionStateUpdatedTime": "System.DateTime",
+ "LastActivityTime": "System.DateTime",
+ "CloudToDeviceMessageCount": "System.Int32",
+ "Id": "System.String",
+ "DeviceId": "System.String",
+ "GenerationId": "System.String",
+ "ETag": "System.String",
+ "ManagedBy": "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.2.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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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": "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.2.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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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": "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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 3,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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": "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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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": "AzIotHubModule",
+ "Name": "Get-AzIotHubModule",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubModule",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
+ "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
+ "ConnectionStateUpdatedTime": "System.DateTime",
+ "LastActivityTime": "System.DateTime",
+ "CloudToDeviceMessageCount": "System.Int32",
+ "Id": "System.String",
+ "DeviceId": "System.String",
+ "GenerationId": "System.String",
+ "ETag": "System.String",
+ "ManagedBy": "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"
+ ]
+ },
+ {
+ "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",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "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.2.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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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.2.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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "Get",
+ "NounName": "AzIotHubModuleConnectionString",
+ "Name": "Get-AzIotHubModuleConnectionString",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubModuleConnectionString",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "ModuleId": "System.String",
+ "ConnectionString": "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.2.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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "KeyType",
+ "AliasList": [],
+ "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",
+ "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": "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.2.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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "KeyType",
+ "AliasList": [],
+ "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",
+ "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": "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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "KeyType",
+ "AliasList": [],
+ "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",
+ "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": "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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "KeyType",
+ "AliasList": [],
+ "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",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
"Parameters": [
{
"Name": "obj",
@@ -6175,68 +15691,732 @@
"ReturnType": "System.String"
},
{
- "Name": "ToString",
+ "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": "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-AzIotHubMCS"
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzIotHubModule",
+ "Name": "Remove-AzIotHubModule",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.RemoveAzIotHubModule",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "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": "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.2.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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "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.2.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": "format",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "provider",
+ "Name": "obj",
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
- "ReturnType": "System.String"
+ "ReturnType": "System.Boolean"
},
{
- "Name": "CompareTo",
- "Parameters": [
- {
- "Name": "target",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
+ "Name": "GetHashCode",
+ "Parameters": [],
"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": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
{
- "Name": "HasFlag",
- "Parameters": [
- {
- "Name": "flag",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
+ "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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "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": "GetTypeCode",
+ "Name": "Clear",
"Parameters": [],
- "ReturnType": "System.TypeCode"
- },
+ "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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "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": "GetType",
+ "Name": "Clear",
"Parameters": [],
- "ReturnType": "System.Type"
+ "ReturnType": "System.Void"
}
],
"Constructors": []
@@ -6244,16 +16424,69 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "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": "StatusReason",
+ "Name": "ModuleId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -6268,6 +16501,98 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "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
+ }
+ ]
+ },
+ {
+ "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,
@@ -6315,9 +16640,370 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Set",
+ "NounName": "AzIotHubModule",
+ "Name": "Set-AzIotHubModule",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubModule",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
+ "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
+ "ConnectionStateUpdatedTime": "System.DateTime",
+ "LastActivityTime": "System.DateTime",
+ "CloudToDeviceMessageCount": "System.Int32",
+ "Id": "System.String",
+ "DeviceId": "System.String",
+ "GenerationId": "System.String",
+ "ETag": "System.String",
+ "ManagedBy": "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.2.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": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "AuthMethod",
+ "AliasList": [],
+ "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",
+ "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": "InputObjectSetForEdgeEnabled",
+ "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": {
@@ -6326,7 +17012,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -6411,123 +17097,7 @@
},
{
"ParameterMetadata": {
- "Name": "EdgeEnabled",
- "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": 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": "ResourceSetForAuth",
- "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",
+ "Name": "ModuleId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -6556,232 +17126,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.1.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
- },
- "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": "ResourceSetForStatus",
- "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": "Status",
- "AliasList": [],
- "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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6883,30 +17228,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "StatusReason",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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",
@@ -6949,7 +17270,7 @@
]
},
{
- "Name": "ResourceSetForEdgeEnabled",
+ "Name": "ResourceSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -7025,99 +17346,7 @@
},
{
"ParameterMetadata": {
- "Name": "EdgeEnabled",
- "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": 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": "ResourceIdSetForAuth",
- "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",
+ "Name": "ModuleId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7135,7 +17364,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
+ "Position": 3,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -7146,7 +17375,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7290,7 +17519,7 @@
]
},
{
- "Name": "ResourceIdSetForStatus",
+ "Name": "ResourceIdSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -7342,12 +17571,36 @@
},
{
"ParameterMetadata": {
- "Name": "Status",
+ "Name": "ModuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "AuthMethod",
"AliasList": [],
"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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7449,146 +17702,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "StatusReason",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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",
- "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": "ResourceIdSetForEdgeEnabled",
- "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": "EdgeEnabled",
- "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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -7691,7 +17804,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubConsumerGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -7924,7 +18037,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8271,7 +18384,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -8330,7 +18443,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8501,7 +18614,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8918,7 +19031,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateWithNonceDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce",
"ResourceGroupName": "System.String",
@@ -8977,7 +19090,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -9164,7 +19277,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -9557,7 +19670,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -9829,7 +19942,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -10104,7 +20217,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -10530,7 +20643,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubQuotaMetric, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"CurrentValue": "System.String",
@@ -10759,7 +20872,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubRegistryStatistics, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TotalDeviceCount": "System.Nullable`1[System.Int64]",
"EnabledDeviceCount": "System.Nullable`1[System.Int64]",
@@ -10988,7 +21101,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -11236,7 +21349,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -11425,7 +21538,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -11938,7 +22051,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -12035,7 +22148,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12174,7 +22287,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -12321,7 +22434,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12478,7 +22591,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -12595,7 +22708,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -12912,7 +23025,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -13229,7 +23342,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -13933,7 +24046,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -14138,7 +24251,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -14862,7 +24975,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -15288,7 +25401,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -15343,7 +25456,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -15550,7 +25663,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16089,7 +26202,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -16146,7 +26259,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16278,7 +26391,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16474,7 +26587,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16564,7 +26677,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16861,7 +26974,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17134,7 +27247,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17458,7 +27571,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -17510,7 +27623,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -17562,7 +27675,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -17614,7 +27727,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -17675,7 +27788,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -17807,7 +27920,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18003,7 +28116,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -18093,7 +28206,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18390,7 +28503,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18663,7 +28776,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18939,7 +29052,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -18990,7 +29103,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties",
"GenericTypeArguments": [],
@@ -19009,7 +29122,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -19180,7 +29293,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -19575,7 +29688,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -19628,7 +29741,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties",
"GenericTypeArguments": [],
@@ -19647,7 +29760,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -19818,7 +29931,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -20235,7 +30348,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -20287,7 +30400,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -20304,7 +30417,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -20356,7 +30469,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties",
"GenericTypeArguments": [],
@@ -20371,7 +30484,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -20423,7 +30536,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties",
"GenericTypeArguments": [],
@@ -20438,7 +30551,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -20495,7 +30608,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties",
"GenericTypeArguments": [],
@@ -20510,7 +30623,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint",
"GenericTypeArguments": [],
@@ -20529,7 +30642,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -20643,7 +30756,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20803,7 +30916,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -20869,7 +30982,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21094,7 +31207,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21295,7 +31408,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21472,7 +31585,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21675,7 +31788,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -21864,7 +31977,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -22374,7 +32487,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -22563,7 +32676,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -23095,7 +33208,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -23227,7 +33340,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23387,7 +33500,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -23477,7 +33590,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23726,7 +33839,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23951,7 +34064,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24152,7 +34265,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24336,7 +34449,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -24391,7 +34504,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -24598,7 +34711,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -25137,7 +35250,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -25194,7 +35307,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -25326,7 +35439,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -25439,7 +35552,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -25529,7 +35642,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -25743,7 +35856,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -25933,7 +36046,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -26075,7 +36188,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -26224,7 +36337,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Details": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails",
"Result": "System.String"
@@ -26274,7 +36387,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Location": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange",
"Severity": "System.String",
@@ -26325,7 +36438,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties",
"GenericTypeArguments": [],
@@ -26344,7 +36457,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26476,7 +36589,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26690,7 +36803,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26920,7 +37033,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26986,7 +37099,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27471,7 +37584,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27908,7 +38021,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28260,7 +38373,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -28357,7 +38470,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28606,7 +38719,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -28660,7 +38773,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -28715,7 +38828,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -28735,7 +38848,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -28922,7 +39035,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29501,7 +39614,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -29653,7 +39766,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -29806,7 +39919,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -29924,7 +40037,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -30085,7 +40198,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -30144,7 +40257,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -30349,7 +40462,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -30814,7 +40927,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -31332,7 +41445,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsVerified": "System.Nullable`1[System.Boolean]",
"Expiry": "System.Nullable`1[System.DateTime]",
@@ -31615,7 +41728,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31720,7 +41833,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType",
"SymmetricKey": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey",
@@ -31766,7 +41879,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31861,7 +41974,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrimaryKey": "System.String",
"SecondaryKey": "System.String"
@@ -31906,7 +42019,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrimaryThumbprint": "System.String",
"SecondaryThumbprint": "System.String"
@@ -31951,7 +42064,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IotEdge": "System.Boolean"
},
@@ -31995,7 +42108,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32090,7 +42203,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32185,7 +42298,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -32240,7 +42353,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32335,7 +42448,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -32381,7 +42494,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
"TtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
@@ -32461,7 +42574,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -32508,7 +42621,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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]",
@@ -32555,7 +42668,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32567,7 +42680,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -32614,7 +42727,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32626,7 +42739,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -32673,7 +42786,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32685,7 +42798,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -32732,7 +42845,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32744,7 +42857,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -32796,7 +42909,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -32844,7 +42957,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32856,7 +42969,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -32902,7 +43015,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32914,7 +43027,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -32962,7 +43075,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32975,7 +43088,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PartitionIds": "System.Collections.Generic.IList`1[System.String]",
"PartitionCount": "System.Nullable`1[System.Int32]",
@@ -33035,7 +43148,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33048,7 +43161,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
"TtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
@@ -33094,7 +43207,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33107,7 +43220,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SasTtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
"ConnectionString": "System.String",
@@ -33153,7 +43266,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33165,7 +43278,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Location": "System.String",
"Role": "System.String"
@@ -33210,7 +43323,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33222,7 +43335,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -33269,7 +43382,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku",
"Tier": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier",
@@ -33315,7 +43428,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33410,7 +43523,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33505,7 +43618,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -33558,10 +43671,108 @@
}
]
},
+ "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",
+ "Properties": {
+ "ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
+ "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": []
+ }
+ ]
+ },
+ "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",
+ "Properties": {
+ "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
+ "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
+ "ConnectionStateUpdatedTime": "System.DateTime",
+ "LastActivityTime": "System.DateTime",
+ "CloudToDeviceMessageCount": "System.Int32",
+ "Id": "System.String",
+ "DeviceId": "System.String",
+ "GenerationId": "System.String",
+ "ETag": "System.String",
+ "ManagedBy": "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.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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsVerified": "System.Nullable`1[System.Boolean]",
"Expiry": "System.Nullable`1[System.DateTime]",
@@ -33611,7 +43822,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33623,7 +43834,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33718,7 +43929,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScaleType": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType]",
"Minimum": "System.Nullable`1[System.Int64]",
@@ -33765,7 +43976,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33777,7 +43988,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33872,7 +44083,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33885,7 +44096,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PartitionCount": "System.Nullable`1[System.Int32]",
"RetentionTimeInDays": "System.Nullable`1[System.Int64]"
@@ -33930,7 +44141,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -33976,7 +44187,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -34024,7 +44235,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
"Name": "System.String",
@@ -34072,7 +44283,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34167,7 +44378,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34262,7 +44473,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CompilationErrors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError]"
},
@@ -34306,7 +44517,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.1.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.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -34318,7 +44529,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Location": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange",
"Severity": "System.String",
@@ -34364,7 +44575,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Start": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition",
"End": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition"
@@ -34409,7 +44620,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.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.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.Monitor.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json
index 833ee6ffec19..714d2aeeabe2 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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAutoscaleSettingOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.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.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",
"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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.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.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.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.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.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.1.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.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.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",
"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.0.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.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.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.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.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.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",
"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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.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 8097fb0151c1..fc586b70d91d 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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.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.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",
"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.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.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",
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.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.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",
"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.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.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",
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.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.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",
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.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.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",
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.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.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",
"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.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.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",
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.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.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",
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.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.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",
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.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.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -86982,7 +86982,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.1.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.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -87181,7 +87181,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +87307,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
"GenericTypeArguments": [],
@@ -87412,7 +87412,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
"GenericTypeArguments": [],
@@ -87487,7 +87487,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -88082,7 +88082,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +88208,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
"GenericTypeArguments": [],
@@ -88334,7 +88334,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
"GenericTypeArguments": [],
@@ -88436,7 +88436,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -88992,7 +88992,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -89372,7 +89372,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -89447,7 +89447,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GenericTypeArguments": [],
@@ -89465,7 +89465,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -89541,7 +89541,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
"GenericTypeArguments": [],
@@ -89559,7 +89559,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
"GenericTypeArguments": [],
@@ -89577,7 +89577,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
"GenericTypeArguments": [],
@@ -89617,7 +89617,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -89930,7 +89930,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
"GenericTypeArguments": [],
@@ -89954,7 +89954,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
"GenericTypeArguments": [],
@@ -89978,7 +89978,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
"GenericTypeArguments": [],
@@ -90030,7 +90030,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -90450,7 +90450,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
"GenericTypeArguments": [],
@@ -90474,7 +90474,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
"GenericTypeArguments": [],
@@ -90498,7 +90498,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
"GenericTypeArguments": [],
@@ -90550,7 +90550,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -90848,7 +90848,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -90929,7 +90929,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GenericTypeArguments": [],
@@ -90953,7 +90953,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -91109,7 +91109,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
"GenericTypeArguments": [],
@@ -91133,7 +91133,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
"GenericTypeArguments": [],
@@ -91157,7 +91157,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
"GenericTypeArguments": [],
@@ -91209,7 +91209,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -91841,7 +91841,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -92129,7 +92129,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -92473,7 +92473,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -92841,7 +92841,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -93071,7 +93071,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -93170,7 +93170,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -93648,7 +93648,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -94425,7 +94425,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -94847,7 +94847,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -95104,7 +95104,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -95490,7 +95490,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -95633,7 +95633,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -96005,7 +96005,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -96769,7 +96769,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -97076,7 +97076,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -97458,7 +97458,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -97568,7 +97568,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -97958,7 +97958,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -98482,7 +98482,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -98582,7 +98582,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -98858,7 +98858,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -99181,7 +99181,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -99281,7 +99281,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -99393,7 +99393,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -99806,7 +99806,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -100009,7 +100009,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -100085,7 +100085,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -100288,7 +100288,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -100534,7 +100534,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -101111,7 +101111,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -101477,7 +101477,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -101921,7 +101921,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -102041,7 +102041,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -102369,7 +102369,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -102747,7 +102747,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -103045,7 +103045,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -103155,7 +103155,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -103377,7 +103377,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -103615,7 +103615,7 @@
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SasUrl": "System.String"
},
@@ -103708,7 +103708,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -104014,7 +104014,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -104396,7 +104396,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProfileUrl": "System.String"
},
@@ -104489,7 +104489,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -104759,7 +104759,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -105078,7 +105078,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -105223,7 +105223,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -105311,7 +105311,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +105716,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +106231,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -106307,7 +106307,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +106583,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -106898,7 +106898,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +107480,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -107789,7 +107789,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -108173,7 +108173,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -108285,7 +108285,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -108390,7 +108390,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +108824,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +109267,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -109484,7 +109484,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -109559,7 +109559,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +109786,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -110213,7 +110213,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +110773,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -111089,7 +111089,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +111165,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
"GenericTypeArguments": [],
@@ -111264,7 +111264,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
"GenericTypeArguments": [],
@@ -111363,7 +111363,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +111464,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -111741,7 +111741,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -112147,7 +112147,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -112219,7 +112219,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +112614,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -112808,7 +112808,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +113252,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -113551,7 +113551,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -113661,7 +113661,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -113779,7 +113779,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -113797,7 +113797,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +114046,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -114070,7 +114070,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +114249,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -114418,7 +114418,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -114442,7 +114442,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +114744,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -114768,7 +114768,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +114954,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -115186,7 +115186,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +115244,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
"GenericTypeArguments": [],
@@ -115301,7 +115301,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
"GenericTypeArguments": [],
@@ -115456,7 +115456,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -115930,7 +115930,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116245,7 +116245,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116378,7 +116378,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116448,7 +116448,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -116593,7 +116593,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -116735,7 +116735,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -116853,7 +116853,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116929,7 +116929,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -117045,7 +117045,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -117168,7 +117168,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -117300,7 +117300,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -117388,7 +117388,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -117406,7 +117406,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +117631,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -117655,7 +117655,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +117884,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -117908,7 +117908,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +118089,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -118189,7 +118189,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -118213,7 +118213,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +118416,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -118440,7 +118440,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +118626,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -118917,7 +118917,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnServerConfigurationResourceIds": "System.Collections.Generic.List`1[System.String]",
"VpnServerConfigurationResourceIdsText": "System.String"
@@ -119011,7 +119011,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -119230,7 +119230,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -119525,7 +119525,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProfileUrl": "System.String"
},
@@ -119618,7 +119618,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -119702,7 +119702,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +119909,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +120212,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -120282,7 +120282,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +120440,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -120631,7 +120631,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +120986,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SasUrl": "System.String"
},
@@ -121080,7 +121080,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -121200,7 +121200,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
"GenericTypeArguments": [],
@@ -121308,7 +121308,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
"GenericTypeArguments": [],
@@ -121545,7 +121545,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -121615,7 +121615,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
"GenericTypeArguments": [],
@@ -121709,7 +121709,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -121897,7 +121897,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
"GenericTypeArguments": [],
@@ -122182,7 +122182,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -122739,7 +122739,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -123043,7 +123043,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -123422,7 +123422,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -123528,7 +123528,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -124008,7 +124008,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -124687,7 +124687,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -124798,7 +124798,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -124905,7 +124905,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -125026,7 +125026,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -125160,7 +125160,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -125304,7 +125304,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -125452,7 +125452,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -125616,7 +125616,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -125882,7 +125882,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -126046,7 +126046,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -126165,7 +126165,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -126236,7 +126236,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -126384,7 +126384,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -126548,7 +126548,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -126667,7 +126667,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -126837,7 +126837,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -127001,7 +127001,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -127144,7 +127144,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -127292,7 +127292,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -127456,7 +127456,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -127698,7 +127698,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -127862,7 +127862,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -128053,7 +128053,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -128217,7 +128217,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -128340,7 +128340,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableBgp": "System.Boolean",
@@ -128428,7 +128428,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -128541,7 +128541,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -128740,7 +128740,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -128877,7 +128877,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -129193,7 +129193,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -129626,7 +129626,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -129891,7 +129891,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -130185,7 +130185,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -130308,7 +130308,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -130414,7 +130414,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -130582,7 +130582,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -130698,7 +130698,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -130849,7 +130849,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -131064,7 +131064,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -131279,7 +131279,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -131462,7 +131462,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -131767,7 +131767,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -132147,7 +132147,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -132255,7 +132255,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -132338,7 +132338,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -132501,7 +132501,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -132643,7 +132643,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -132714,7 +132714,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -132878,7 +132878,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -133018,7 +133018,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -133165,7 +133165,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +133473,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +133815,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -134038,7 +134038,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -134332,7 +134332,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -134674,7 +134674,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -134992,7 +134992,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -135175,7 +135175,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +135494,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +135888,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +136009,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +136313,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -136560,7 +136560,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -136878,7 +136878,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -137172,7 +137172,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -137290,7 +137290,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +137478,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -137596,7 +137596,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +137832,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -137950,7 +137950,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +138162,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -138407,7 +138407,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -138700,7 +138700,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -138969,7 +138969,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -139140,7 +139140,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -139263,7 +139263,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -139559,7 +139559,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -139720,7 +139720,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -139946,7 +139946,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -140733,7 +140733,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -140996,7 +140996,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -141425,7 +141425,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -141495,7 +141495,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -142165,7 +142165,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -142435,7 +142435,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -142897,7 +142897,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -143204,7 +143204,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -143586,7 +143586,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -143695,7 +143695,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -143818,7 +143818,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -144044,7 +144044,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -144428,7 +144428,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -144811,7 +144811,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -144978,7 +144978,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -145240,7 +145240,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -145599,7 +145599,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -145717,7 +145717,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -146030,7 +146030,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -146148,7 +146148,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -146437,7 +146437,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -146555,7 +146555,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -146628,7 +146628,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -146890,7 +146890,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -147008,7 +147008,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -147273,7 +147273,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -147655,7 +147655,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -148013,7 +148013,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -148155,7 +148155,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -148417,7 +148417,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -148751,7 +148751,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -149059,7 +149059,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -149182,7 +149182,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Tag": "System.Collections.Hashtable",
@@ -149789,7 +149789,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -149889,7 +149889,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150033,7 +150033,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150171,7 +150171,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -150247,7 +150247,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150391,7 +150391,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150529,7 +150529,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -150719,7 +150719,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150819,7 +150819,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150963,7 +150963,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -151101,7 +151101,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -151361,7 +151361,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -151831,7 +151831,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -152067,7 +152067,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +152159,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering",
"GenericTypeArguments": [],
@@ -152177,7 +152177,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
"GenericTypeArguments": [],
@@ -152438,7 +152438,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering",
"GenericTypeArguments": [],
@@ -152462,7 +152462,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
"GenericTypeArguments": [],
@@ -152830,7 +152830,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering",
"GenericTypeArguments": [],
@@ -152854,7 +152854,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
"GenericTypeArguments": [],
@@ -153020,7 +153020,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +153254,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering",
"GenericTypeArguments": [],
@@ -153278,7 +153278,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
"GenericTypeArguments": [],
@@ -153451,7 +153451,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -153551,7 +153551,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -153816,7 +153816,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +153993,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -154443,7 +154443,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -154845,7 +154845,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +154950,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -155363,7 +155363,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -155463,7 +155463,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -155661,7 +155661,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -155888,7 +155888,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156078,7 +156078,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156159,7 +156159,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156303,7 +156303,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156441,7 +156441,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156541,7 +156541,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156685,7 +156685,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156823,7 +156823,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -156919,7 +156919,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -157063,7 +157063,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -157201,7 +157201,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -157481,7 +157481,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +158336,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +158767,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -158867,7 +158867,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -159033,7 +159033,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -159199,7 +159199,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -159299,7 +159299,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -159564,7 +159564,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +159741,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -160191,7 +160191,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -160593,7 +160593,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +160698,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161434,7 +161434,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161516,7 +161516,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161654,7 +161654,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161816,7 +161816,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Age": "System.Nullable`1[System.Int32]",
"InterfaceProperty": "System.String",
@@ -161933,7 +161933,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162154,7 +162154,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162314,7 +162314,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"Network": "System.String",
@@ -162432,7 +162432,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162653,7 +162653,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162813,7 +162813,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"V": "System.Nullable`1[System.Int32]",
"AsProperty": "System.Nullable`1[System.Int32]",
@@ -162931,7 +162931,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -163152,7 +163152,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -163312,7 +163312,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrimaryBytesIn": "System.Nullable`1[System.Int64]",
"PrimaryBytesOut": "System.Nullable`1[System.Int64]",
@@ -163600,7 +163600,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Age": "System.Nullable`1[System.Int32]",
"InterfaceProperty": "System.String",
@@ -163695,7 +163695,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +163789,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164013,7 +164013,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164169,7 +164169,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +164275,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164459,7 +164459,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164622,7 +164622,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"Network": "System.String",
@@ -164718,7 +164718,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +164812,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165036,7 +165036,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165192,7 +165192,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +165298,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165482,7 +165482,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165645,7 +165645,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +165757,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +165851,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -166075,7 +166075,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -166231,7 +166231,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +166337,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -166521,7 +166521,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -166684,7 +166684,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +166775,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +167115,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +167519,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -167609,7 +167609,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +167744,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +167873,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +167946,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +168115,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +168320,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +168567,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +168640,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +168784,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering",
"GenericTypeArguments": [],
@@ -168877,7 +168877,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +169143,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering",
"GenericTypeArguments": [],
@@ -169358,7 +169358,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableBandwidths": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]",
"Tag": "System.Collections.Hashtable",
@@ -169556,7 +169556,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +169939,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +169995,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +170108,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +170239,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +170431,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +170506,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +170619,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +170750,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +170825,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +170958,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +171115,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig",
"RouterName": "System.String",
@@ -171197,7 +171197,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +171352,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +171476,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +171624,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +171755,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +171976,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
"GenericTypeArguments": [],
@@ -172030,7 +172030,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +172268,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
"GenericTypeArguments": [],
@@ -172340,7 +172340,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +172615,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
"GenericTypeArguments": [],
@@ -172687,7 +172687,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +172912,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
"GenericTypeArguments": [],
@@ -172984,7 +172984,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +173115,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +173338,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +173963,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +174040,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +174173,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +174328,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +174388,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable",
"GenericTypeArguments": [],
@@ -174536,7 +174536,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable",
"GenericTypeArguments": [],
@@ -174726,7 +174726,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]",
"Priority": "System.Int32",
@@ -174840,7 +174840,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition",
"GenericTypeArguments": [],
@@ -174993,7 +174993,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition",
"GenericTypeArguments": [],
@@ -175096,7 +175096,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VariableName": "System.String",
"Selector": "System.String"
@@ -175342,7 +175342,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -175584,7 +175584,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariable": "System.String",
"SelectorMatchOperator": "System.String",
@@ -175875,7 +175875,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleId": "System.String",
"State": "System.String"
@@ -176107,7 +176107,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]",
"RuleGroupName": "System.String"
@@ -176179,7 +176179,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride",
"GenericTypeArguments": [],
@@ -176260,7 +176260,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride",
"GenericTypeArguments": [],
@@ -176335,7 +176335,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]",
"RuleSetVersion": "System.String",
@@ -176426,7 +176426,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride",
"GenericTypeArguments": [],
@@ -176531,7 +176531,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride",
"GenericTypeArguments": [],
@@ -176606,7 +176606,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +176660,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet",
"GenericTypeArguments": [],
@@ -176678,7 +176678,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion",
"GenericTypeArguments": [],
@@ -176735,7 +176735,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet",
"GenericTypeArguments": [],
@@ -176759,7 +176759,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion",
"GenericTypeArguments": [],
@@ -176834,7 +176834,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -176954,7 +176954,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -176972,7 +176972,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -177028,7 +177028,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +177248,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -177272,7 +177272,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -177334,7 +177334,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +177516,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -177942,7 +177942,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -178282,7 +178282,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -178730,7 +178730,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -178830,7 +178830,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -178911,7 +178911,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -178929,7 +178929,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -178985,7 +178985,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +179143,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -179167,7 +179167,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -179229,7 +179229,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +179356,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -179425,7 +179425,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -179449,7 +179449,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -179511,7 +179511,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +179662,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -179686,7 +179686,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -179748,7 +179748,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +179875,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -179899,7 +179899,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -179961,7 +179961,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +180095,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -180335,7 +180335,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -181066,7 +181066,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +181144,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +181278,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +181436,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +181508,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +181642,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +181800,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +182004,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +182082,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +182216,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +182374,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +182452,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +182622,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -182753,7 +182753,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -182868,7 +182868,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +183094,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -183213,7 +183213,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +183463,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +183662,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +183837,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -183919,7 +183919,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +184101,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -184201,7 +184201,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +184335,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +184493,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -184686,7 +184686,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -184817,7 +184817,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -185075,7 +185075,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -185569,7 +185569,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -185750,7 +185750,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +185828,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +185962,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +186120,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +186198,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +186368,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -186499,7 +186499,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -186614,7 +186614,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +186840,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -186959,7 +186959,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +187209,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +187408,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +187583,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -187665,7 +187665,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +187847,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +188283,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +188361,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +188600,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -188738,7 +188738,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +189081,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +189400,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -189505,7 +189505,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +189831,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -189911,7 +189911,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +190045,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +190203,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -190445,7 +190445,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -191079,7 +191079,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -191427,7 +191427,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +191505,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +191639,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +191797,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +191875,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +192114,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -192252,7 +192252,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +192595,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +192914,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -193019,7 +193019,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +193345,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +193423,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +193644,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -193782,7 +193782,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +194101,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +194396,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -194501,7 +194501,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +194803,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -194879,7 +194879,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +195013,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +195171,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -195391,7 +195391,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -195977,7 +195977,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -196301,7 +196301,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +196379,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +196513,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +196671,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +196749,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +196970,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -197108,7 +197108,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +197427,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +197722,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -197827,7 +197827,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +198129,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +198207,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +198464,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -198581,7 +198581,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +198670,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -198791,7 +198791,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +199206,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +199549,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -199654,7 +199654,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +199731,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -199819,7 +199819,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +200169,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200249,7 +200249,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +200383,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +200541,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200801,7 +200801,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200918,7 +200918,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +201007,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -201720,7 +201720,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -201825,7 +201825,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +201902,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -202257,7 +202257,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +202335,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +202469,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +202627,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +202705,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +202962,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -203079,7 +203079,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +203168,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -203289,7 +203289,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +203704,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +204047,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -204152,7 +204152,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +204229,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -204317,7 +204317,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +204667,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +204837,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -204855,7 +204855,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -204873,7 +204873,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
"GenericTypeArguments": [],
@@ -204891,7 +204891,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe",
"GenericTypeArguments": [],
@@ -204909,7 +204909,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -204927,7 +204927,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
"GenericTypeArguments": [],
@@ -204945,7 +204945,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
"GenericTypeArguments": [],
@@ -205160,7 +205160,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -205184,7 +205184,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -205208,7 +205208,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
"GenericTypeArguments": [],
@@ -205232,7 +205232,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe",
"GenericTypeArguments": [],
@@ -205256,7 +205256,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -205280,7 +205280,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
"GenericTypeArguments": [],
@@ -205304,7 +205304,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
"GenericTypeArguments": [],
@@ -205427,7 +205427,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +205505,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +205672,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -205708,7 +205708,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +205818,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +206021,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -206113,7 +206113,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +206316,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -206384,7 +206384,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +206461,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +206664,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -206739,7 +206739,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +206808,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +206942,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +207100,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +207259,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -207295,7 +207295,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +207525,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -207737,7 +207737,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -207805,7 +207805,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +208002,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -208077,7 +208077,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +208155,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +208289,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +208447,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +208525,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +208692,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -208728,7 +208728,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +208838,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +209041,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -209133,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +209336,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -209404,7 +209404,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +209481,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +209684,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -209759,7 +209759,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +209837,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +210061,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +210339,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -210422,7 +210422,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +210556,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +210714,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -211139,7 +211139,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +211217,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +211351,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +211509,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +211587,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +211811,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +212412,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +212490,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +212624,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +212782,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -213217,7 +213217,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -213386,7 +213386,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute",
"GenericTypeArguments": [],
@@ -213601,7 +213601,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute",
"GenericTypeArguments": [],
@@ -214047,7 +214047,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214124,7 +214124,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214311,7 +214311,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214540,7 +214540,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -214599,7 +214599,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214732,7 +214732,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214889,7 +214889,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -215206,7 +215206,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215283,7 +215283,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215416,7 +215416,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215573,7 +215573,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215650,7 +215650,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215837,7 +215837,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -216066,7 +216066,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -216143,7 +216143,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -216276,7 +216276,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -216433,7 +216433,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceType": "System.String"
},
@@ -216618,7 +216618,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +216678,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.1.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.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -217007,7 +217007,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +217520,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +217860,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +218308,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +218372,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +218492,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +218636,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -218881,7 +218881,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -219827,7 +219827,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -219894,7 +219894,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -220089,7 +220089,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -220332,7 +220332,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +220778,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +220976,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -220994,7 +220994,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -221257,7 +221257,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -221281,7 +221281,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -221461,7 +221461,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +221809,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +222265,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +222393,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +222462,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222480,7 +222480,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222621,7 +222621,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222645,7 +222645,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222787,7 +222787,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222811,7 +222811,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222929,7 +222929,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +223004,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -223028,7 +223028,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -223144,7 +223144,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -223168,7 +223168,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -223291,7 +223291,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Association": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -223525,7 +223525,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"AddressPrefix": "System.Collections.Generic.List`1[System.String]",
@@ -223800,7 +223800,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -224764,7 +224764,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -224876,7 +224876,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -225044,7 +225044,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -225175,7 +225175,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -225269,7 +225269,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -225305,7 +225305,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -225341,7 +225341,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -225377,7 +225377,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -225458,7 +225458,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -225844,7 +225844,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -226062,7 +226062,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -226181,7 +226181,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -226263,7 +226263,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -226287,7 +226287,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -226311,7 +226311,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -226335,7 +226335,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -226383,7 +226383,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -226608,7 +226608,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -226722,7 +226722,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -226878,7 +226878,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -227028,7 +227028,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -227217,7 +227217,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -227348,7 +227348,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -227442,7 +227442,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -227478,7 +227478,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -227514,7 +227514,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -227550,7 +227550,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -228037,7 +228037,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -228156,7 +228156,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -228238,7 +228238,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -228262,7 +228262,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -228286,7 +228286,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -228310,7 +228310,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -228484,7 +228484,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -228596,7 +228596,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -228752,7 +228752,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -228902,7 +228902,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -229014,7 +229014,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -229182,7 +229182,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -229313,7 +229313,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -229407,7 +229407,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -229443,7 +229443,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -229479,7 +229479,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -229515,7 +229515,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -229596,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -229982,7 +229982,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -230200,7 +230200,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -230319,7 +230319,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -230401,7 +230401,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -230425,7 +230425,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -230449,7 +230449,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -230473,7 +230473,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -230521,7 +230521,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -230746,7 +230746,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -230896,7 +230896,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"GenericTypeArguments": [],
@@ -230932,7 +230932,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -231063,7 +231063,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -231157,7 +231157,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +231264,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -231300,7 +231300,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -231336,7 +231336,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -231372,7 +231372,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -231877,7 +231877,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"GenericTypeArguments": [],
@@ -231925,7 +231925,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +232306,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"GenericTypeArguments": [],
@@ -233118,7 +233118,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -233237,7 +233237,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -233319,7 +233319,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +233414,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -233438,7 +233438,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -233462,7 +233462,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -233486,7 +233486,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -234174,7 +234174,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234268,7 +234268,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234418,7 +234418,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234592,7 +234592,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234686,7 +234686,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234815,7 +234815,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -234921,7 +234921,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -235112,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -235279,7 +235279,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -235352,7 +235352,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -235526,7 +235526,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -235931,7 +235931,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -236097,7 +236097,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -236510,7 +236510,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -236765,7 +236765,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -236859,7 +236859,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -236992,7 +236992,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -237159,7 +237159,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +237239,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile",
"GenericTypeArguments": [],
@@ -237322,7 +237322,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile",
"GenericTypeArguments": [],
@@ -237397,7 +237397,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +237999,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +238077,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -238271,7 +238271,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -238482,7 +238482,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -238652,7 +238652,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +238794,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
"GenericTypeArguments": [],
@@ -238987,7 +238987,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
"GenericTypeArguments": [],
@@ -239185,7 +239185,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +239649,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +239959,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +240025,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +240147,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +240293,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +240741,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +240849,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +241053,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -241071,7 +241071,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -241248,7 +241248,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +241616,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -241640,7 +241640,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -241688,7 +241688,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +242128,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +242503,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -242590,7 +242590,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +242760,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +242930,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -243132,7 +243132,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -243150,7 +243150,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -243600,7 +243600,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -243624,7 +243624,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -244297,7 +244297,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +244405,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +244557,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +244703,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +244811,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +245015,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -245033,7 +245033,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -245210,7 +245210,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +245578,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -245602,7 +245602,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -245650,7 +245650,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +246090,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +246465,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +246611,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
"GenericTypeArguments": [],
@@ -246796,7 +246796,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
"GenericTypeArguments": [],
@@ -247266,7 +247266,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +247356,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +247502,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +247672,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -247737,7 +247737,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +247804,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -247996,7 +247996,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -248464,7 +248464,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]",
"StatesText": "System.String"
@@ -248518,7 +248518,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -248651,7 +248651,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -248789,7 +248789,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -249302,7 +249302,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -249512,7 +249512,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -249577,7 +249577,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +249644,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -249889,7 +249889,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -249907,7 +249907,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -249943,7 +249943,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +250115,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -250494,7 +250494,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -250587,7 +250587,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -250611,7 +250611,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -251209,7 +251209,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -251233,7 +251233,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -251783,7 +251783,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -251807,7 +251807,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -251971,7 +251971,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +252229,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.String",
"Address": "System.String"
@@ -252415,7 +252415,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Filter": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter",
"Name": "System.String",
@@ -252544,7 +252544,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem",
"GenericTypeArguments": [],
@@ -252717,7 +252717,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem",
"GenericTypeArguments": [],
@@ -252908,7 +252908,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +252970,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -253105,7 +253105,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253123,7 +253123,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -253216,7 +253216,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -253309,7 +253309,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253333,7 +253333,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -253523,7 +253523,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253547,7 +253547,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -253713,7 +253713,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253737,7 +253737,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -253879,7 +253879,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253903,7 +253903,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -254026,7 +254026,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings",
"Type": "System.String",
@@ -254255,7 +254255,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
"SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold",
@@ -254352,7 +254352,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -254549,7 +254549,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -254732,7 +254732,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +254810,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -254830,7 +254830,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -254850,7 +254850,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -254951,7 +254951,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -254977,7 +254977,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -255003,7 +255003,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -255123,7 +255123,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -255256,7 +255256,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -255412,7 +255412,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -256021,7 +256021,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -256279,7 +256279,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -256344,7 +256344,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +256411,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -256544,7 +256544,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -256735,7 +256735,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -256753,7 +256753,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -256882,7 +256882,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -257237,7 +257237,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -257330,7 +257330,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -257354,7 +257354,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -257904,7 +257904,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -257928,7 +257928,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -258430,7 +258430,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -258454,7 +258454,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -258904,7 +258904,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -258928,7 +258928,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -259068,7 +259068,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -259297,7 +259297,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -259430,7 +259430,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -259586,7 +259586,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -260195,7 +260195,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -260472,7 +260472,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -260605,7 +260605,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -260761,7 +260761,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -261370,7 +261370,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -261628,7 +261628,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -261998,7 +261998,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -262059,7 +262059,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -262251,7 +262251,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -262767,7 +262767,7 @@
"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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NextHopType": "System.String",
"NextHopIpAddress": "System.String",
@@ -262822,7 +262822,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -263068,7 +263068,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -263872,7 +263872,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]",
"NetworkInterfacesText": "System.String"
@@ -263926,7 +263926,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -264118,7 +264118,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -264634,7 +264634,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +264691,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -264865,7 +264865,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -265285,7 +265285,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]",
"Tag": "System.Collections.Hashtable",
@@ -265356,7 +265356,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -265530,7 +265530,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -265950,7 +265950,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]",
"ResultsText": "System.String"
@@ -266004,7 +266004,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -266175,7 +266175,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -266252,7 +266252,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -266367,7 +266367,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -266559,7 +266559,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -266725,7 +266725,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -266891,7 +266891,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -267033,7 +267033,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -267134,7 +267134,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Direction": "System.String",
"Protocol": "System.String",
@@ -267491,7 +267491,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -267815,7 +267815,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +267899,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -268091,7 +268091,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -268607,7 +268607,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +268681,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -268948,7 +268948,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -269023,7 +269023,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -269288,7 +269288,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -269628,7 +269628,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -269942,7 +269942,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -270232,7 +270232,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -270331,7 +270331,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocol": "System.String",
"RemoteIPAddress": "System.String",
@@ -270707,7 +270707,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -270917,7 +270917,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -271548,7 +271548,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -271758,7 +271758,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -272389,7 +272389,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -272581,7 +272581,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -273097,7 +273097,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -273158,7 +273158,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -273574,7 +273574,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -273957,7 +273957,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -274384,7 +274384,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -276984,7 +276984,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]",
"Tag": "System.Collections.Hashtable",
@@ -277055,7 +277055,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -277265,7 +277265,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -277877,7 +277877,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +277937,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -278144,7 +278144,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -278256,7 +278256,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -278443,7 +278443,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -278742,7 +278742,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -279015,7 +279015,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -279264,7 +279264,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -279400,7 +279400,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Access": "System.String",
"RuleName": "System.String"
@@ -279454,7 +279454,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -279778,7 +279778,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -280990,7 +280990,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +281435,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +281576,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -281689,7 +281689,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection",
"GenericTypeArguments": [],
@@ -281892,7 +281892,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -282011,7 +282011,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection",
"GenericTypeArguments": [],
@@ -282182,7 +282182,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
"GroupIds": "System.Collections.Generic.List`1[System.String]",
@@ -282262,7 +282262,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -282547,7 +282547,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -283215,7 +283215,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +283300,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +283441,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +283606,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkService": "System.String"
},
@@ -283833,7 +283833,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -284268,7 +284268,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -284401,7 +284401,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -284419,7 +284419,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration",
"GenericTypeArguments": [],
@@ -284658,7 +284658,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -284682,7 +284682,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration",
"GenericTypeArguments": [],
@@ -284901,7 +284901,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -285444,7 +285444,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -285987,7 +285987,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -287411,7 +287411,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -288044,7 +288044,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequiredMembers": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -288278,7 +288278,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -288399,7 +288399,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -288475,7 +288475,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -288720,7 +288720,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -288802,7 +288802,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -289554,7 +289554,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -289631,7 +289631,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -289764,7 +289764,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -289921,7 +289921,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpCommunities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]",
"Name": "System.String",
@@ -290069,7 +290069,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +290416,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -291327,7 +291327,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -291541,7 +291541,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag",
"GenericTypeArguments": [],
@@ -291559,7 +291559,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +291956,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag",
"GenericTypeArguments": [],
@@ -291980,7 +291980,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +292252,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -292803,7 +292803,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -292880,7 +292880,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -293013,7 +293013,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -293170,7 +293170,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +293550,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +293737,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag",
"GenericTypeArguments": [],
@@ -294017,7 +294017,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag",
"GenericTypeArguments": [],
@@ -294263,7 +294263,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +294733,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +295049,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +295121,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +295249,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +295401,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +295835,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +295967,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
"GenericTypeArguments": [],
@@ -296152,7 +296152,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
"GenericTypeArguments": [],
@@ -296580,7 +296580,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +296656,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +296865,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +297122,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -297198,7 +297198,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +297336,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +297468,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -297836,7 +297836,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -297912,7 +297912,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +298068,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +298224,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +298300,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +298509,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +298766,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +298842,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +298992,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +299172,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +299552,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +299646,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
"GenericTypeArguments": [],
@@ -299781,7 +299781,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
"GenericTypeArguments": [],
@@ -300001,7 +300001,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +300407,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +300679,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +300773,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +300965,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +301173,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -301250,7 +301250,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +301388,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +301520,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -301841,7 +301841,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +301953,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -302011,7 +302011,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +302149,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +302298,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +302423,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -302487,7 +302487,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +302612,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +302744,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +302838,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +303030,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +303238,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +303314,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +303428,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +304080,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -304540,7 +304540,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -305116,7 +305116,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalAddressRanges": "System.String[]",
"RemoteAddressRanges": "System.String[]"
@@ -305348,7 +305348,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -305507,7 +305507,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -305585,7 +305585,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -305663,7 +305663,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -305806,7 +305806,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -305955,7 +305955,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -305973,7 +305973,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -306185,7 +306185,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -306269,7 +306269,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -306353,7 +306353,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -306598,7 +306598,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -306622,7 +306622,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -306887,7 +306887,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -306971,7 +306971,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307055,7 +307055,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307300,7 +307300,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -307324,7 +307324,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -307467,7 +307467,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -307648,7 +307648,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307732,7 +307732,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307816,7 +307816,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -308061,7 +308061,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -308085,7 +308085,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -309078,7 +309078,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -309185,7 +309185,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -309508,7 +309508,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -309905,7 +309905,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -310011,7 +310011,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -310333,7 +310333,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -310730,7 +310730,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -310815,7 +310815,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -310939,7 +310939,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -310957,7 +310957,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -311068,7 +311068,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -311210,7 +311210,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -311234,7 +311234,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -311374,7 +311374,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -311516,7 +311516,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -311540,7 +311540,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -311667,7 +311667,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -311746,7 +311746,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -311878,7 +311878,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -312009,7 +312009,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -312124,7 +312124,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -312348,7 +312348,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -312524,7 +312524,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -312643,7 +312643,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -312725,7 +312725,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -312908,7 +312908,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -313227,7 +313227,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -313787,7 +313787,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -314108,7 +314108,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Asn": "System.Nullable`1[System.Int32]",
"RoutesReceived": "System.Nullable`1[System.Int64]",
@@ -314430,7 +314430,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -314687,7 +314687,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -314966,7 +314966,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -315243,7 +315243,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -315520,7 +315520,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -316068,7 +316068,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -316616,7 +316616,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -316751,7 +316751,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -316883,7 +316883,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -316989,7 +316989,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -317007,7 +317007,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -317025,7 +317025,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -317420,7 +317420,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -317588,7 +317588,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -317712,7 +317712,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -317736,7 +317736,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -317760,7 +317760,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -318142,7 +318142,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -318310,7 +318310,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -318434,7 +318434,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -318458,7 +318458,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -318482,7 +318482,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -318792,7 +318792,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -318960,7 +318960,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -319084,7 +319084,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -319108,7 +319108,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -319132,7 +319132,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -319368,7 +319368,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -319536,7 +319536,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -319660,7 +319660,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -319684,7 +319684,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -319708,7 +319708,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -319951,7 +319951,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -320066,7 +320066,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -320197,7 +320197,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -320544,7 +320544,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -320663,7 +320663,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -320844,7 +320844,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnProfileSASUrl": "System.String"
},
@@ -321255,7 +321255,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -321486,7 +321486,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -321772,7 +321772,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -321999,7 +321999,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322569,7 +322569,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322648,7 +322648,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322765,7 +322765,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322900,7 +322900,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322979,7 +322979,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -323114,7 +323114,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -323835,7 +323835,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -323914,7 +323914,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324067,7 +324067,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324250,7 +324250,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324329,7 +324329,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324478,7 +324478,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324651,7 +324651,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324730,7 +324730,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324808,7 +324808,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324913,7 +324913,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325041,7 +325041,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325113,7 +325113,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325248,7 +325248,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -325344,7 +325344,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -325403,7 +325403,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325586,7 +325586,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -325695,7 +325695,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325827,7 +325827,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -326008,7 +326008,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -326128,7 +326128,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -326207,7 +326207,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -326321,7 +326321,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -326427,7 +326427,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -326445,7 +326445,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -326463,7 +326463,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -326754,7 +326754,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -326880,7 +326880,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -327004,7 +327004,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -327028,7 +327028,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -327052,7 +327052,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -327336,7 +327336,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -327462,7 +327462,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -327586,7 +327586,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -327610,7 +327610,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -327634,7 +327634,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -327942,7 +327942,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -328068,7 +328068,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -328192,7 +328192,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -328216,7 +328216,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -328240,7 +328240,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -328548,7 +328548,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -328674,7 +328674,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -328798,7 +328798,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -328822,7 +328822,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -328846,7 +328846,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -329106,7 +329106,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -329232,7 +329232,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -329356,7 +329356,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -329380,7 +329380,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -329404,7 +329404,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -329651,7 +329651,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -330023,7 +330023,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -330199,7 +330199,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -330312,7 +330312,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -330958,7 +330958,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -331059,7 +331059,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -331456,7 +331456,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -331920,7 +331920,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -332232,7 +332232,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -332300,7 +332300,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -332424,7 +332424,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -332572,7 +332572,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -333006,7 +333006,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -333174,7 +333174,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"GenericTypeArguments": [],
@@ -333461,7 +333461,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"GenericTypeArguments": [],
@@ -333680,7 +333680,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -333767,7 +333767,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -334013,7 +334013,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -334289,7 +334289,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -334935,7 +334935,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335004,7 +335004,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335129,7 +335129,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335601,7 +335601,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -335677,7 +335677,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -335809,7 +335809,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -335965,7 +335965,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -336059,7 +336059,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -336170,7 +336170,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +336277,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -336375,7 +336375,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +336462,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -336480,7 +336480,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -336597,7 +336597,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -336726,7 +336726,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -336750,7 +336750,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -336964,7 +336964,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -337093,7 +337093,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -337117,7 +337117,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -337233,7 +337233,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +337328,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -337412,7 +337412,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +337511,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -337640,7 +337640,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -337664,7 +337664,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -337787,7 +337787,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -337937,7 +337937,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -338137,7 +338137,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -338311,7 +338311,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -338387,7 +338387,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -338563,7 +338563,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -338733,7 +338733,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -338865,7 +338865,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -339021,7 +339021,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -339265,7 +339265,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -339433,7 +339433,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +339540,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -339638,7 +339638,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +339725,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -339743,7 +339743,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -339908,7 +339908,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -339932,7 +339932,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -340194,7 +340194,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -340218,7 +340218,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -340334,7 +340334,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +340429,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -340513,7 +340513,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +340660,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -340684,7 +340684,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -340807,7 +340807,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -340901,7 +340901,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341039,7 +341039,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341171,7 +341171,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341265,7 +341265,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341376,7 +341376,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +341483,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -341581,7 +341581,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +341668,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -341686,7 +341686,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -341803,7 +341803,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341932,7 +341932,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -341956,7 +341956,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -342170,7 +342170,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -342299,7 +342299,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -342323,7 +342323,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -342439,7 +342439,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +342534,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -342618,7 +342618,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +342717,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -342846,7 +342846,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -342870,7 +342870,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -342993,7 +342993,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Available": "System.Boolean",
"AvailableIPAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -343048,7 +343048,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -343216,7 +343216,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -343556,7 +343556,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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]",
@@ -344202,7 +344202,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -344611,7 +344611,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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]",
@@ -344735,7 +344735,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -345052,7 +345052,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -345423,7 +345423,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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]",
@@ -345583,7 +345583,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -346088,7 +346088,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -346467,7 +346467,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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]",
@@ -346843,7 +346843,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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]",
@@ -346949,7 +346949,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -347346,7 +347346,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -347898,7 +347898,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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]",
@@ -348242,7 +348242,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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]",
@@ -348694,7 +348694,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -348930,7 +348930,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -349062,7 +349062,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -349238,7 +349238,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -349408,7 +349408,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnProfileSASUrl": "System.String"
},
@@ -349639,7 +349639,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -349877,7 +349877,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnConnectionDuration": "System.Nullable`1[System.Int64]",
"MaxBandwidth": "System.Nullable`1[System.Int64]",
@@ -349983,7 +349983,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -350350,7 +350350,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -350577,7 +350577,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -350684,7 +350684,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -351001,7 +351001,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -351392,7 +351392,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -351499,7 +351499,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -351816,7 +351816,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -352207,7 +352207,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableTraceRoute": "System.Nullable`1[System.Boolean]",
"Port": "System.Nullable`1[System.Int32]"
@@ -352257,7 +352257,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +352313,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableTraceRoute": "System.Nullable`1[System.Boolean]"
},
@@ -353062,7 +353062,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -353376,7 +353376,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -353487,7 +353487,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -353758,7 +353758,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -354076,7 +354076,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -354227,7 +354227,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -354331,7 +354331,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -354450,7 +354450,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -354671,7 +354671,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -354814,7 +354814,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -355006,7 +355006,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -355149,7 +355149,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -355269,7 +355269,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -355391,7 +355391,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -355534,7 +355534,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -355700,7 +355700,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -355843,7 +355843,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -355968,7 +355968,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -356067,7 +356067,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -356335,7 +356335,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -356654,7 +356654,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -356794,7 +356794,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -357354,7 +357354,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -357711,7 +357711,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -357791,7 +357791,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.1.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.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -358194,7 +358194,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -358319,7 +358319,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -358455,7 +358455,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -358808,7 +358808,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -358892,7 +358892,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -359118,7 +359118,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -359395,7 +359395,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -359674,7 +359674,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -360364,7 +360364,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -361118,7 +361118,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -361442,7 +361442,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -361840,7 +361840,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Id": "System.String",
@@ -362028,7 +362028,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -362217,7 +362217,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Tag": "System.Collections.Hashtable",
@@ -362503,7 +362503,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Id": "System.String",
@@ -362690,7 +362690,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]",
"Name": "System.String",
@@ -362880,7 +362880,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Countries": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]",
"CountriesText": "System.String"
@@ -362934,7 +362934,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -363199,7 +363199,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -364192,7 +364192,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +364249,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -364568,7 +364568,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -365921,7 +365921,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName",
"CurrentValue": "System.Double",
@@ -366284,7 +366284,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -366351,7 +366351,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -366397,7 +366397,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -366459,7 +366459,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -366513,7 +366513,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366525,7 +366525,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[System.Int32]",
"RuleGroupName": "System.String",
@@ -366583,7 +366583,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366595,7 +366595,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariable": "System.String",
"SelectorMatchOperator": "System.String",
@@ -366653,7 +366653,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +366700,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.1.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.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366713,7 +366713,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -366875,7 +366875,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -366919,7 +366919,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366931,7 +366931,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -366980,7 +366980,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366992,7 +366992,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +367054,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367066,7 +367066,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Fqdn": "System.String",
"IpAddress": "System.String"
@@ -367111,7 +367111,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367123,7 +367123,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -367210,7 +367210,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Fqdns": "System.Collections.Generic.List`1[System.String]",
"RequiredMemberName": "System.String",
@@ -367256,7 +367256,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -367324,7 +367324,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -367377,7 +367377,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -367482,7 +367482,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +367563,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367575,7 +367575,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -367660,7 +367660,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsServers": "System.Collections.Generic.List`1[System.String]",
"AppliedDnsServers": "System.Collections.Generic.List`1[System.String]",
@@ -367710,7 +367710,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367722,7 +367722,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -367772,7 +367772,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -367831,7 +367831,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -367922,7 +367922,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367944,7 +367944,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367956,7 +367956,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -368028,7 +368028,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368040,7 +368040,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -368093,7 +368093,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368105,7 +368105,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -368173,7 +368173,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368185,7 +368185,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -368235,7 +368235,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368247,7 +368247,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "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",
@@ -368296,7 +368296,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368308,7 +368308,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368320,7 +368320,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +368396,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368408,7 +368408,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
"GroupIds": "System.Collections.Generic.List`1[System.String]",
@@ -368461,7 +368461,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.String",
"Description": "System.String",
@@ -368507,7 +368507,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368519,7 +368519,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LinkedResourceType": "System.String",
"Link": "System.String",
@@ -368568,7 +368568,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368580,7 +368580,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LinkedResourceType": "System.String",
"Link": "System.String",
@@ -368629,7 +368629,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368641,7 +368641,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Locations": "System.Collections.Generic.List`1[System.String]",
"Service": "System.String",
@@ -368687,7 +368687,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368699,7 +368699,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +368766,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368778,7 +368778,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -368828,7 +368828,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DomainNameLabel": "System.String",
"Fqdn": "System.String",
@@ -368874,7 +368874,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -368918,7 +368918,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368930,7 +368930,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -368975,7 +368975,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368987,7 +368987,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +369050,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369062,7 +369062,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369129,7 +369129,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369141,7 +369141,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369153,7 +369153,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369231,7 +369231,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -369276,7 +369276,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369288,7 +369288,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -369333,7 +369333,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369345,7 +369345,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369399,7 +369399,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369411,7 +369411,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -369460,7 +369460,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369472,7 +369472,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369533,7 +369533,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369545,7 +369545,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"ProvisioningState": "System.String",
@@ -369595,7 +369595,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369607,7 +369607,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -369666,7 +369666,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -369712,7 +369712,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369724,7 +369724,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +369783,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369795,7 +369795,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369856,7 +369856,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369868,7 +369868,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -369923,7 +369923,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369935,7 +369935,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +369985,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +370034,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -370080,7 +370080,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370092,7 +370092,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HeaderName": "System.String",
"HeaderValue": "System.String"
@@ -370137,7 +370137,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370149,7 +370149,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreCase": "System.Nullable`1[System.Boolean]",
"Negate": "System.Nullable`1[System.Boolean]",
@@ -370196,7 +370196,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370208,7 +370208,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -370270,7 +370270,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370282,7 +370282,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -370331,7 +370331,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370343,7 +370343,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -370400,7 +370400,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370412,7 +370412,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -370649,7 +370649,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370661,7 +370661,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]",
"Tag": "System.Collections.Hashtable",
@@ -370718,7 +370718,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370730,7 +370730,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]",
"RuleGroupName": "System.String",
@@ -370777,7 +370777,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370789,7 +370789,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleId": "System.Int32",
"Description": "System.String"
@@ -370834,7 +370834,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370846,7 +370846,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +370893,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370905,7 +370905,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +370952,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370964,7 +370964,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"Address": "System.String",
@@ -371011,7 +371011,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +371056,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371068,7 +371068,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariable": "System.String",
"SelectorMatchOperator": "System.String",
@@ -371114,7 +371114,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371126,7 +371126,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]",
"RuleSetVersion": "System.String",
@@ -371172,7 +371172,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371184,7 +371184,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]",
"RuleGroupName": "System.String"
@@ -371229,7 +371229,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371241,7 +371241,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleId": "System.String",
"State": "System.String"
@@ -371286,7 +371286,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -371334,7 +371334,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371346,7 +371346,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]",
"Priority": "System.Int32",
@@ -371395,7 +371395,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371407,7 +371407,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +371458,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371470,7 +371470,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VariableName": "System.String",
"Selector": "System.String"
@@ -371515,7 +371515,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"FqdnTagName": "System.String",
@@ -371568,7 +371568,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371580,7 +371580,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolType": "System.String",
"Port": "System.UInt32"
@@ -371635,7 +371635,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371647,7 +371647,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"RuleCollectionType": "System.String",
@@ -371693,7 +371693,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"RuleType": "System.String"
@@ -371804,7 +371804,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.String"
},
@@ -371848,7 +371848,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371860,7 +371860,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -371929,7 +371929,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -371987,7 +371987,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371999,7 +371999,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +372068,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372080,7 +372080,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolType": "System.String",
"Port": "System.UInt32"
@@ -372140,7 +372140,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -372191,7 +372191,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -372236,7 +372236,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -372291,7 +372291,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372303,7 +372303,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +372384,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372396,7 +372396,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372408,7 +372408,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +372489,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.String"
},
@@ -372533,7 +372533,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372545,7 +372545,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -372613,7 +372613,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372625,7 +372625,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +372706,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -372985,7 +372985,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"AddressPrefixesText": "System.String"
@@ -373030,7 +373030,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsServers": "System.Collections.Generic.List`1[System.String]",
"DnsServersText": "System.String"
@@ -373075,7 +373075,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkCommunity": "System.String",
"RegionalCommunity": "System.String"
@@ -373125,7 +373125,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373137,7 +373137,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -373197,7 +373197,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -373241,7 +373241,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Bounds": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds",
"BoundsText": "System.String"
@@ -373286,7 +373286,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Min": "System.Int32",
"Max": "System.Int32"
@@ -373331,7 +373331,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -373375,7 +373375,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373387,7 +373387,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -373439,7 +373439,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +373488,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373500,7 +373500,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -373549,7 +373549,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373561,7 +373561,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -373610,7 +373610,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373622,7 +373622,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllocatedIpAddresses": "System.Collections.Generic.List`1[System.String]",
"VpnClientConnectionsCount": "System.Int32",
@@ -373670,7 +373670,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373682,7 +373682,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"ProvisioningState": "System.String",
@@ -373731,7 +373731,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadTenant": "System.String",
"AadAudience": "System.String",
@@ -373777,7 +373777,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373789,7 +373789,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Thumbprint": "System.String"
@@ -373834,7 +373834,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373846,7 +373846,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"PublicCertData": "System.String"
@@ -373891,7 +373891,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373903,7 +373903,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -373954,7 +373954,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -374013,7 +374013,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerWeight": "System.Nullable`1[System.Int32]",
"Asn": "System.Nullable`1[System.Int64]",
@@ -374071,7 +374071,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LinkSpeedInMbps": "System.Int32",
"DeviceVendor": "System.String",
@@ -374117,7 +374117,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374129,7 +374129,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -374180,7 +374180,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Asn": "System.Nullable`1[System.Int64]",
"BgpPeeringAddress": "System.String"
@@ -374225,7 +374225,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LinkSpeedInMbps": "System.Int32",
"LinkProviderName": "System.String"
@@ -374270,7 +374270,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374282,7 +374282,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableBgp": "System.Boolean",
@@ -374341,7 +374341,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374353,7 +374353,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -374413,7 +374413,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Tier": "System.String",
@@ -374459,7 +374459,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BandwidthInMbps": "System.Int32",
"PeeringLocation": "System.String",
@@ -374505,7 +374505,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374517,7 +374517,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -374566,7 +374566,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374578,7 +374578,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -374647,7 +374647,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
"RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
@@ -374700,7 +374700,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdvertisedPublicPrefixes": "System.Collections.Generic.List`1[System.String]",
"AdvertisedCommunities": "System.Collections.Generic.List`1[System.String]",
@@ -374751,7 +374751,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +374818,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374830,7 +374830,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -374879,7 +374879,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374891,7 +374891,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -374945,7 +374945,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374957,7 +374957,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -375024,7 +375024,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375036,7 +375036,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig",
"RouterName": "System.String",
@@ -375091,7 +375091,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CknSecretIdentifier": "System.String",
"CakSecretIdentifier": "System.String",
@@ -375137,7 +375137,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -375181,7 +375181,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375193,7 +375193,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -375256,7 +375256,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375268,7 +375268,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ValueInGbps": "System.Nullable`1[System.Int32]",
"OfferName": "System.String"
@@ -375313,7 +375313,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -375357,7 +375357,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375369,7 +375369,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375381,7 +375381,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -375452,7 +375452,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375464,7 +375464,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -375535,7 +375535,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375547,7 +375547,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +375607,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375619,7 +375619,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -375693,7 +375693,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +375748,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -375792,7 +375792,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterface": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -375852,7 +375852,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375864,7 +375864,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -375918,7 +375918,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375930,7 +375930,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Container": "Microsoft.Azure.Commands.Network.Models.PSContainer",
"ContainerNetworkInterfaceConfiguration": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
@@ -375983,7 +375983,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -376027,7 +376027,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +376078,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376090,7 +376090,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"ProvisioningState": "System.String",
@@ -376139,7 +376139,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376151,7 +376151,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -376204,7 +376204,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376216,7 +376216,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"Address": "System.String",
@@ -376262,7 +376262,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Nullable`1[System.Int32]",
"ResourceId": "System.String"
@@ -376342,7 +376342,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376354,7 +376354,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings",
"Type": "System.String",
@@ -376400,7 +376400,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WorkspaceResourceId": "System.String"
},
@@ -376444,7 +376444,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376456,7 +376456,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +376507,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376519,7 +376519,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Filter": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter",
"Name": "System.String",
@@ -376567,7 +376567,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Items": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]",
"Type": "System.String",
@@ -376613,7 +376613,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376625,7 +376625,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.String",
"Address": "System.String"
@@ -376670,7 +376670,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376682,7 +376682,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
"SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold",
@@ -376732,7 +376732,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -376774,7 +376774,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ChecksFailedPercent": "System.Nullable`1[System.Int32]",
"RoundTripTimeMs": "System.Nullable`1[System.Int32]"
@@ -376819,7 +376819,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376831,7 +376831,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +376880,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376892,7 +376892,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +376942,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376954,7 +376954,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +377013,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Version": "System.Nullable`1[System.Int32]",
"Type": "System.String"
@@ -377058,7 +377058,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Days": "System.Nullable`1[System.Int32]"
@@ -377103,7 +377103,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkWatcherFlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties"
},
@@ -377152,7 +377152,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"TrafficAnalyticsInterval": "System.Nullable`1[System.Int32]",
@@ -377205,7 +377205,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377217,7 +377217,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +377269,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377281,7 +377281,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Associations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]",
"Name": "System.String",
@@ -377329,7 +377329,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377341,7 +377341,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AssociationType": "System.String",
"Name": "System.String",
@@ -377387,7 +377387,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377399,7 +377399,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecommendedActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]",
"Id": "System.String",
@@ -377448,7 +377448,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377460,7 +377460,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionId": "System.String",
"ActionText": "System.String",
@@ -377507,7 +377507,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377519,7 +377519,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Profile": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile",
"NetworkSecurityGroupResult": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult"
@@ -377564,7 +377564,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Direction": "System.String",
"Protocol": "System.String",
@@ -377612,7 +377612,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EvaluatedNetworkSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]",
"SecurityRuleAccessResult": "System.String",
@@ -377658,7 +377658,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377670,7 +377670,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +377718,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleName": "System.String",
"Action": "System.String"
@@ -377763,7 +377763,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377775,7 +377775,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolMatched": "System.Boolean",
"SourceMatched": "System.Boolean",
@@ -377824,7 +377824,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageId": "System.String",
"StoragePath": "System.String",
@@ -377870,7 +377870,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377882,7 +377882,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocol": "System.String",
"RemoteIPAddress": "System.String",
@@ -377952,7 +377952,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377984,7 +377984,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subscriptions": "System.Collections.Generic.List`1[System.String]",
"SubscriptionsText": "System.String"
@@ -378029,7 +378029,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378041,7 +378041,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -378093,7 +378093,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378105,7 +378105,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -378160,7 +378160,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378172,7 +378172,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsAuthorizedToUse": "System.Boolean",
"CommunityPrefixes": "System.Collections.Generic.List`1[System.String]",
@@ -378222,7 +378222,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378234,7 +378234,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ValueInMbps": "System.Int32",
"OfferName": "System.String"
@@ -378279,7 +378279,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -378323,7 +378323,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378335,7 +378335,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378347,7 +378347,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -378392,7 +378392,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -378450,7 +378450,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -378520,7 +378520,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Int32",
"Name": "System.String",
@@ -378566,7 +378566,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +378624,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378636,7 +378636,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -378684,7 +378684,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378696,7 +378696,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -378744,7 +378744,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378756,7 +378756,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -378808,7 +378808,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378820,7 +378820,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalAddressRanges": "System.String[]",
"RemoteAddressRanges": "System.String[]"
@@ -378865,7 +378865,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378877,7 +378877,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IngressBytesTransferred": "System.Nullable`1[System.Int64]",
"EgressBytesTransferred": "System.Nullable`1[System.Int64]",
@@ -378925,7 +378925,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378937,7 +378937,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -378987,7 +378987,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378999,7 +378999,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -379044,7 +379044,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379056,7 +379056,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -379106,7 +379106,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -379181,7 +379181,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379193,7 +379193,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties",
"Id": "System.String",
@@ -379239,7 +379239,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Region": "System.String",
@@ -379286,7 +379286,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379298,7 +379298,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +379345,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379357,7 +379357,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.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 +379404,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379416,7 +379416,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Providers": "System.Collections.Generic.IList`1[System.String]",
"CityName": "System.String"
@@ -379461,7 +379461,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Country": "System.String",
"State": "System.String",
@@ -379507,7 +379507,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379519,7 +379519,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Latencies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]",
"Provider": "System.String",
@@ -379566,7 +379566,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.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.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",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379578,7 +379578,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TimeStamp": "System.Nullable`1[System.DateTime]",
"Score": "System.Nullable`1[System.Int32]"
@@ -379623,7 +379623,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.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Value": "System.String",
"LocalizedValue": "System.String"
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 6a1490db1181..fdc7a91d2004 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
@@ -79947,11 +79947,12 @@
"CreatedTime": "System.Nullable`1[System.DateTime]",
"ChangedTime": "System.Nullable`1[System.DateTime]",
"SubscriptionId": "System.String",
+ "TagsTable": "System.String",
"ExtensionResourceType": "System.String",
"ResourceType": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String",
"ResourceId": "System.String",
+ "ParentResource": "System.String",
"ExtensionResourceName": "System.String",
"Name": "System.String",
"ResourceName": "System.String",
@@ -79959,7 +79960,7 @@
"Location": "System.String",
"Kind": "System.String",
"Id": "System.String",
- "ParentResource": "System.String",
+ "ResourceGroupName": "System.String",
"ETag": "System.String"
},
"ElementType": null,
@@ -86065,11 +86066,12 @@
"CreatedTime": "System.Nullable`1[System.DateTime]",
"ChangedTime": "System.Nullable`1[System.DateTime]",
"SubscriptionId": "System.String",
+ "TagsTable": "System.String",
"ExtensionResourceType": "System.String",
"ResourceType": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String",
"ResourceId": "System.String",
+ "ParentResource": "System.String",
"ExtensionResourceName": "System.String",
"Name": "System.String",
"ResourceName": "System.String",
@@ -86077,7 +86079,7 @@
"Location": "System.String",
"Kind": "System.String",
"Id": "System.String",
- "ParentResource": "System.String",
+ "ResourceGroupName": "System.String",
"ETag": "System.String"
},
"ElementType": null,
@@ -86528,11 +86530,12 @@
"CreatedTime": "System.Nullable`1[System.DateTime]",
"ChangedTime": "System.Nullable`1[System.DateTime]",
"SubscriptionId": "System.String",
+ "TagsTable": "System.String",
"ExtensionResourceType": "System.String",
"ResourceType": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String",
"ResourceId": "System.String",
+ "ParentResource": "System.String",
"ExtensionResourceName": "System.String",
"Name": "System.String",
"ResourceName": "System.String",
@@ -86540,7 +86543,7 @@
"Location": "System.String",
"Kind": "System.String",
"Id": "System.String",
- "ParentResource": "System.String",
+ "ResourceGroupName": "System.String",
"ETag": "System.String"
},
"ElementType": null,
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 38ae3bf45456..747d5e9a9359 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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -28434,7 +28434,7 @@
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ObjectIdParameterSet",
+ "DefaultParameterSetName": "DisplayNameParameterSet",
"OutputTypes": [
{
"Type": {
@@ -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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -28664,7 +28664,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -28688,7 +28688,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -28780,7 +28780,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -28804,7 +28804,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -28936,7 +28936,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -28960,7 +28960,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -29028,7 +29028,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -29052,7 +29052,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.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.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.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.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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.11.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.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 a8006609808d..9f27a9dd6805 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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -3099,9 +3099,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -3109,7 +3110,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -3351,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -3361,9 +3362,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -3371,7 +3373,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -3589,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -3703,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -3713,9 +3715,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -3723,7 +3726,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -3965,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -3975,9 +3978,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -3985,7 +3989,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -4203,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -4317,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -4433,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4677,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4902,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -5018,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5339,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5636,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5868,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -5977,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -5987,19 +5991,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6180,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6190,19 +6195,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6353,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -6462,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6472,19 +6478,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6665,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6675,19 +6682,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6838,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -6947,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -7063,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7337,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7610,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7811,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -7879,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8080,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8288,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -8397,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -8408,7 +8416,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8589,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -8600,7 +8610,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8751,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -8860,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -8871,7 +8883,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9052,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -9063,7 +9077,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9214,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -9328,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -9444,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9718,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9991,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10192,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -10260,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10461,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10669,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServerName": "System.String",
"DatabaseName": "System.String",
@@ -10775,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -11050,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -11263,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -11375,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -11706,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -11975,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -12087,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -12460,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -12753,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"InstanceName": "System.String",
"DatabaseName": "System.String",
@@ -12859,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -13134,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -13391,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -13503,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -13513,9 +13529,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -13523,7 +13540,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -13807,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -13817,9 +13834,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -13827,7 +13845,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -14093,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -14205,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -14215,9 +14233,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -14225,7 +14244,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -14551,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -14561,9 +14580,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -14571,7 +14591,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -14885,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -14992,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -15365,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -15658,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -15765,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -16138,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -16431,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -16538,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -16892,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -17148,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -17255,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -17265,9 +17285,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -17275,7 +17296,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -17601,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -17611,9 +17632,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -17621,7 +17643,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -17935,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -18042,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -18052,9 +18074,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -18062,7 +18085,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -18388,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -18398,9 +18421,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -18408,7 +18432,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -18722,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -18829,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -19183,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -19531,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -19805,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20205,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20521,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20921,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21355,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21453,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21705,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -22003,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CurrentValue": "System.Nullable`1[System.Int32]",
"Limit": "System.Nullable`1[System.Int32]",
@@ -22062,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -22240,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -22664,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -22756,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -22766,19 +22790,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22943,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -22953,19 +22978,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23774,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -23785,7 +23811,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24032,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -24043,7 +24071,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24526,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -24636,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -24646,19 +24676,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24829,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -24839,19 +24870,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25212,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -25320,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -25330,19 +25362,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25489,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -25499,19 +25532,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25826,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
"ResourceGroupName": "System.String",
@@ -26098,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType",
"PercentComplete": "System.Single",
@@ -26371,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -26602,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -26694,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -26704,19 +26738,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26881,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -26891,19 +26926,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27288,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -27394,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27535,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -27545,19 +27581,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27702,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27837,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -27847,19 +27884,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27983,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28210,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28536,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
"ResourceGroupName": "System.String",
@@ -28592,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28788,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29020,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -29077,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29309,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29589,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -29868,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30104,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30425,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30703,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -31242,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -32051,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]"
@@ -32321,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"IsDefault": "System.Boolean",
@@ -32755,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -32766,7 +32804,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32995,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33006,7 +33046,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33163,6 +33205,46 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "PublicNetworkAccess",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "AsJob",
"AliasList": [],
@@ -33385,6 +33467,58 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "PublicNetworkAccess",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -33491,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33502,7 +33636,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33773,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33784,7 +33920,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33923,6 +34061,46 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "PublicNetworkAccess",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "Force",
"AliasList": [],
@@ -34121,6 +34299,58 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "PublicNetworkAccess",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -34227,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -34544,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -34819,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -35136,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -35412,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -35730,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -35842,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36156,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36524,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36972,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -37267,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState",
"OperationId": "System.Guid",
@@ -37593,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -38056,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -38393,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -38954,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39228,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39586,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39902,9 +40132,10 @@
"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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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"
@@ -40132,9 +40363,10 @@
"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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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"
@@ -40404,9 +40636,10 @@
"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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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"
@@ -40490,6 +40723,26 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "IsAzureOnlyAuthentication",
+ "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": true
+ },
{
"Name": "ServerName",
"AliasList": [],
@@ -40612,6 +40865,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "IsAzureOnlyAuthentication",
+ "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": true
+ },
+ "Mandatory": false,
+ "Position": 4,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -40718,7 +40997,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -41093,7 +41372,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -42334,7 +42613,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -42537,7 +42816,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42913,7 +43192,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43332,7 +43611,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43755,7 +44034,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44011,7 +44290,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -44386,7 +44665,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -45247,7 +45526,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -45653,7 +45932,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -46059,7 +46338,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -46418,7 +46697,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -46542,7 +46821,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46780,7 +47059,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47036,7 +47315,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -47160,7 +47439,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47398,7 +47677,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47654,7 +47933,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -47773,7 +48052,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47993,7 +48272,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48225,7 +48504,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -48235,19 +48514,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48300,7 +48580,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -48496,7 +48776,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -48982,7 +49262,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -48992,19 +49272,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49057,7 +49338,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -49480,6 +49761,29 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "AsJob",
"AliasList": [],
@@ -49545,7 +49849,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -49877,78 +50181,8 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "MinimalTlsVersion",
"AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.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": "NewByInstancePoolResourceIdParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InstancePoolResourceId",
- "AliasList": [
- "ResourceId"
- ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -49959,85 +50193,16 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "InstanceName"
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "AdministratorCredential",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, 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": "StorageSizeInGB",
- "AliasList": [],
- "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": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -50045,55 +50210,223 @@
},
{
"ParameterMetadata": {
- "Name": "VCore",
- "AliasList": [],
- "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": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Collation",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.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": "PublicDataEndpointEnabled",
+ "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": "NewByInstancePoolResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InstancePoolResourceId",
+ "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": false
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "InstanceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "AdministratorCredential",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, 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": "StorageSizeInGB",
+ "AliasList": [],
+ "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": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VCore",
+ "AliasList": [],
+ "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": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Collation",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "PublicDataEndpointEnabled",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -50237,6 +50570,35 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -50717,6 +51079,35 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -51221,6 +51612,35 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -51531,6 +51951,35 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -51613,7 +52062,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -51623,19 +52072,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51726,7 +52176,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -51736,19 +52186,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51993,7 +52444,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -52003,19 +52454,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52306,7 +52758,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -52316,19 +52768,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52381,7 +52834,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -52391,19 +52844,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52691,6 +53145,29 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "Force",
"AliasList": [],
@@ -52774,7 +53251,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -52784,19 +53261,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53093,6 +53571,35 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -53457,6 +53964,35 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -53847,6 +54383,35 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -54187,6 +54752,35 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinimalTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "None",
+ "1.0",
+ "1.1",
+ "1.2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -54293,7 +54887,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -54633,7 +55227,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -54643,9 +55237,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -54653,7 +55248,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -54801,7 +55396,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -54811,19 +55406,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55154,7 +55750,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -55164,19 +55760,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55327,7 +55924,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -55337,9 +55934,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -55347,7 +55945,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -55513,7 +56111,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -55523,19 +56121,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56000,7 +56599,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -56010,19 +56609,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56399,7 +56999,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -56409,157 +57009,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
- "StorageContainerSasToken": "System.String",
- "StorageContainerUri": "System.String",
- "CreateMode": "System.String",
- "CatalogCollation": "System.String",
- "DefaultSecondaryLocation": "System.String",
- "Status": "System.String",
- "Collation": "System.String",
"SourceDatabaseId": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "resourceGroup",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "managedInstanceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "database",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [
- "InstanceDatabaseName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.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": "InstanceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.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": [
- "InstanceDatabase"
- ],
- "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.3.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "RestorePointInTime": "System.Nullable`1[System.DateTime]",
- "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
- "Location": "System.String",
- "Name": "System.String",
- "ManagedInstanceName": "System.String",
- "ResourceGroupName": "System.String",
- "RestorableDroppedDatabaseId": "System.String",
- "RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -56567,7 +57020,156 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "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": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "resourceGroup",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "managedInstanceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "database",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "InstanceDatabaseName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": [
+ "InstanceDatabase"
+ ],
+ "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",
+ "Properties": {
+ "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
+ "Location": "System.String",
+ "Name": "System.String",
+ "ManagedInstanceName": "System.String",
+ "ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
+ "RestorableDroppedDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "SourceDatabaseId": "System.String",
+ "StorageContainerSasToken": "System.String",
+ "StorageContainerUri": "System.String",
+ "CreateMode": "System.String",
+ "CatalogCollation": "System.String",
+ "DefaultSecondaryLocation": "System.String",
+ "Status": "System.String",
+ "Collation": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -56855,7 +57457,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -56865,9 +57467,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -56875,7 +57478,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -57185,7 +57788,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -57195,9 +57798,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -57205,7 +57809,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -57305,6 +57909,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "FromLongTermRetentionBackup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "SubscriptionId",
"AliasList": [
@@ -57412,7 +58034,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -57465,7 +58087,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -57958,7 +58580,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -58614,7 +59236,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -59659,7 +60281,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -60302,7 +60924,221 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "LongTermRetentionBackupRestoreParameter",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "FromLongTermRetentionBackup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "SubscriptionId",
+ "AliasList": [
+ "SourceSubscriptionId"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "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": "TargetInstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "TargetResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "TargetInstanceDatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, 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": "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": {
@@ -60410,7 +61246,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DeletionDate": "System.DateTime",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -60927,25 +61763,28 @@
},
{
"VerbName": "Get",
- "NounName": "AzSqlInstanceDatabaseBackupShortTermRetentionPolicy",
- "Name": "Get-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy",
- "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.GetAzureSqlManagedDatabaseBackupShortTermRetentionPolicy",
- "SupportsShouldProcess": false,
+ "NounName": "AzSqlInstanceDatabaseBackupLongTermRetentionPolicy",
+ "Name": "Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy",
+ "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "PolicyByResourceInstanceDatabaseSet",
+ "DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
{
"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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "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",
"Properties": {
- "RetentionDays": "System.Int32",
- "DeletionDate": "System.Nullable`1[System.DateTime]",
+ "WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
- "InstanceName": "System.String",
- "DatabaseName": "System.String"
+ "ManagedInstanceName": "System.String",
+ "DatabaseName": "System.String",
+ "WeeklyRetention": "System.String",
+ "MonthlyRetention": "System.String",
+ "YearlyRetention": "System.String",
+ "Location": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60980,28 +61819,7 @@
{
"Name": "",
"ReturnType": null,
- "Parameters": [
- {
- "Name": "resourceGroup",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "managedInstanceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "managedDatabaseName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "managedBackupRetentionPolicy",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "deletionDate",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
+ "Parameters": []
}
]
},
@@ -61012,79 +61830,7 @@
],
"Parameters": [
{
- "Name": "InputObject",
- "AliasList": [
- "AzureSqlInstanceDatabase",
- "AzureInstanceDatabaseObject"
- ],
- "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.3.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
- "ResourceGroupName": "System.String",
- "ManagedInstanceName": "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": []
- },
- "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": "ResourceGroupName",
+ "Name": "InstanceName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61102,7 +61848,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InstanceName",
+ "Name": "DatabaseName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61120,7 +61866,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DatabaseName",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61137,26 +61883,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "DeletionDate",
- "AliasList": [],
- "Type": {
- "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": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -61193,56 +61919,20 @@
],
"ParameterSets": [
{
- "Name": "PolicyByInputObjectSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [
- "AzureSqlInstanceDatabase",
- "AzureInstanceDatabaseObject"
- ],
+ "Name": "InstanceName",
+ "AliasList": [],
"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.3.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
- "ResourceGroupName": "System.String",
- "ManagedInstanceName": "System.String",
- "Name": "System.String",
- "Id": "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"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -61251,9 +61941,433 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": 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": [
+ "Get-AzSqlInstanceDatabaseLongTermRetentionPolicy"
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzSqlInstanceDatabaseBackupShortTermRetentionPolicy",
+ "Name": "Get-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy",
+ "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.GetAzureSqlManagedDatabaseBackupShortTermRetentionPolicy",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "PolicyByResourceInstanceDatabaseSet",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "RetentionDays": "System.Int32",
+ "DeletionDate": "System.Nullable`1[System.DateTime]",
+ "ResourceGroupName": "System.String",
+ "InstanceName": "System.String",
+ "DatabaseName": "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": "resourceGroup",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "managedInstanceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "managedDatabaseName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "managedBackupRetentionPolicy",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "deletionDate",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "InputObject",
+ "AliasList": [
+ "AzureSqlInstanceDatabase",
+ "AzureInstanceDatabaseObject"
+ ],
+ "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",
+ "Properties": {
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
+ "ResourceGroupName": "System.String",
+ "ManagedInstanceName": "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": []
+ },
+ "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": "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": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "DeletionDate",
+ "AliasList": [],
+ "Type": {
+ "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": []
+ },
+ "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": "PolicyByInputObjectSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [
+ "AzureSqlInstanceDatabase",
+ "AzureInstanceDatabaseObject"
+ ],
+ "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",
+ "Properties": {
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
+ "ResourceGroupName": "System.String",
+ "ManagedInstanceName": "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": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -61325,56 +62439,3264 @@
},
{
"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": "PolicyByResourceInstanceDatabaseSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "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": "PolicyByResourceInstanceDatabaseSet",
+ "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": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DeletionDate",
+ "AliasList": [],
+ "Type": {
+ "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": []
+ },
+ "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": "Get",
+ "NounName": "AzSqlInstanceDatabaseLongTermRetentionBackup",
+ "Name": "Get-AzSqlInstanceDatabaseLongTermRetentionBackup",
+ "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.GetAzureSqlManagedDatabaseLongTermRetentionBackup",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Location",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "BackupExpirationTime": "System.Nullable`1[System.DateTime]",
+ "BackupTime": "System.Nullable`1[System.DateTime]",
+ "DatabaseDeletionTime": "System.Nullable`1[System.DateTime]",
+ "InstanceCreateTime": "System.Nullable`1[System.DateTime]",
+ "BackupName": "System.String",
+ "DatabaseName": "System.String",
+ "Location": "System.String",
+ "ResourceId": "System.String",
+ "ManagedInstanceName": "System.String",
+ "ResourceGroupName": "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": "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": "InputObject",
+ "AliasList": [],
+ "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",
+ "Properties": {
+ "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
+ "Location": "System.String",
+ "Name": "System.String",
+ "ManagedInstanceName": "System.String",
+ "ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
+ "RestorableDroppedDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "SourceDatabaseId": "System.String",
+ "StorageContainerSasToken": "System.String",
+ "StorageContainerUri": "System.String",
+ "CreateMode": "System.String",
+ "CatalogCollation": "System.String",
+ "DefaultSecondaryLocation": "System.String",
+ "Status": "System.String",
+ "Collation": "System.String",
+ "FailoverGroupId": "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": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "resourceGroup",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "managedInstanceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "database",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": false
+ },
+ {
+ "Name": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "BackupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": false
+ },
+ {
+ "Name": "OnlyLatestPerDatabase",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "DatabaseState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "All",
+ "Deleted",
+ "Live"
+ ],
+ "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": "Location",
+ "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": 0,
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OnlyLatestPerDatabase",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "DatabaseState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "All",
+ "Deleted",
+ "Live"
+ ],
+ "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": "InstanceName",
+ "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": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OnlyLatestPerDatabase",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "DatabaseState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "All",
+ "Deleted",
+ "Live"
+ ],
+ "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": "DatabaseName",
+ "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": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OnlyLatestPerDatabase",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "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": "BackupName",
+ "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": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "BackupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 3,
+ "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": 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": "GetBackupByResourceId",
+ "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": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "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": 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
+ }
+ ]
+ },
+ {
+ "Name": "GetBackupByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "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",
+ "Properties": {
+ "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
+ "Location": "System.String",
+ "Name": "System.String",
+ "ManagedInstanceName": "System.String",
+ "ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
+ "RestorableDroppedDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "SourceDatabaseId": "System.String",
+ "StorageContainerSasToken": "System.String",
+ "StorageContainerUri": "System.String",
+ "CreateMode": "System.String",
+ "CatalogCollation": "System.String",
+ "DefaultSecondaryLocation": "System.String",
+ "Status": "System.String",
+ "Collation": "System.String",
+ "FailoverGroupId": "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": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "resourceGroup",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "managedInstanceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "database",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "BackupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": 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": "GetBackupsByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "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",
+ "Properties": {
+ "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
+ "Location": "System.String",
+ "Name": "System.String",
+ "ManagedInstanceName": "System.String",
+ "ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
+ "RestorableDroppedDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "SourceDatabaseId": "System.String",
+ "StorageContainerSasToken": "System.String",
+ "StorageContainerUri": "System.String",
+ "CreateMode": "System.String",
+ "CatalogCollation": "System.String",
+ "DefaultSecondaryLocation": "System.String",
+ "Status": "System.String",
+ "Collation": "System.String",
+ "FailoverGroupId": "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": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "resourceGroup",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "managedInstanceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "database",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OnlyLatestPerDatabase",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "DatabaseState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "All",
+ "Deleted",
+ "Live"
+ ],
+ "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": "__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": "AzSqlInstanceDatabaseLongTermRetentionBackup",
+ "Name": "Remove-AzSqlInstanceDatabaseLongTermRetentionBackup",
+ "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.RemoveAzureSqlManagedDatabaseLongTermRetentionBackup",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RemoveBackupDefault",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "BackupExpirationTime": "System.Nullable`1[System.DateTime]",
+ "BackupTime": "System.Nullable`1[System.DateTime]",
+ "DatabaseDeletionTime": "System.Nullable`1[System.DateTime]",
+ "InstanceCreateTime": "System.Nullable`1[System.DateTime]",
+ "BackupName": "System.String",
+ "DatabaseName": "System.String",
+ "Location": "System.String",
+ "ResourceId": "System.String",
+ "ManagedInstanceName": "System.String",
+ "ResourceGroupName": "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": "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": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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.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",
+ "Properties": {
+ "BackupExpirationTime": "System.Nullable`1[System.DateTime]",
+ "BackupTime": "System.Nullable`1[System.DateTime]",
+ "DatabaseDeletionTime": "System.Nullable`1[System.DateTime]",
+ "InstanceCreateTime": "System.Nullable`1[System.DateTime]",
+ "BackupName": "System.String",
+ "DatabaseName": "System.String",
+ "Location": "System.String",
+ "ResourceId": "System.String",
+ "ManagedInstanceName": "System.String",
+ "ResourceGroupName": "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": "BackupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": 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": "RemoveBackupDefault",
+ "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": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "BackupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 3,
+ "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": 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": "RemoveBackupByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "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",
+ "Properties": {
+ "BackupExpirationTime": "System.Nullable`1[System.DateTime]",
+ "BackupTime": "System.Nullable`1[System.DateTime]",
+ "DatabaseDeletionTime": "System.Nullable`1[System.DateTime]",
+ "InstanceCreateTime": "System.Nullable`1[System.DateTime]",
+ "BackupName": "System.String",
+ "DatabaseName": "System.String",
+ "Location": "System.String",
+ "ResourceId": "System.String",
+ "ManagedInstanceName": "System.String",
+ "ResourceGroupName": "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": "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": "RemoveBackupByResourceId",
+ "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": "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": "Set",
+ "NounName": "AzSqlInstanceDatabaseBackupLongTermRetentionPolicy",
+ "Name": "Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy",
+ "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 1,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "WeeklyRetentionRequired",
+ "OutputTypes": [
+ {
+ "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",
+ "Properties": {
+ "WeekOfYear": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
+ "ManagedInstanceName": "System.String",
+ "DatabaseName": "System.String",
+ "WeeklyRetention": "System.String",
+ "MonthlyRetention": "System.String",
+ "YearlyRetention": "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": "RemovePolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "WeeklyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "MonthlyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "YearlyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "WeekOfYear",
+ "AliasList": [],
+ "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": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.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": "RemovePolicy",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "RemovePolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.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": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": 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
+ }
+ ]
+ },
+ {
+ "Name": "WeeklyRetentionRequired",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": 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
+ }
+ ]
+ },
+ {
+ "Name": "MonthlyRetentionRequired",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "MonthlyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": 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
+ }
+ ]
+ },
+ {
+ "Name": "YearlyRetentionRequired",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "MonthlyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": "YearlyRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "WeekOfYear",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61387,9 +65709,9 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -61413,7 +65735,7 @@
"Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -61437,21 +65759,19 @@
"Mandatory": true,
"Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DeletionDate",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"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",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.DateTime"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -61460,10 +65780,10 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -61509,6 +65829,78 @@
{
"Name": "__AllParameterSets",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InstanceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DatabaseName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": 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",
@@ -61551,7 +65943,9 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Set-AzSqlInstanceDatabaseLongTermRetentionPolicy"
+ ]
},
{
"VerbName": "Get",
@@ -61567,7 +65961,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SupportedServerVersions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]",
"LocationName": "System.String",
@@ -62059,7 +66453,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -62115,7 +66509,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -62125,19 +66519,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62280,7 +66675,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -62290,19 +66685,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62613,7 +67009,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -62705,7 +67101,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -62715,19 +67111,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62962,7 +67359,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -62972,19 +67369,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63395,7 +67793,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -63487,7 +67885,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -63497,19 +67895,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63744,7 +68143,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -63754,19 +68153,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64177,7 +68577,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -64617,7 +69017,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -65203,7 +69603,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -65267,7 +69667,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -65425,7 +69825,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -65751,7 +70151,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -65815,7 +70215,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -66029,7 +70429,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -66651,7 +71051,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -66933,7 +71333,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -67551,7 +71951,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -67671,7 +72071,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -68133,7 +72533,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -68395,7 +72795,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -68515,7 +72915,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -69043,7 +73443,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -69353,7 +73753,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -69473,7 +73873,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -69869,7 +74269,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -70083,7 +74483,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -70454,7 +74854,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -70783,7 +75183,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -71112,7 +75512,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OperationStatusLink": "System.String",
"ErrorMessage": "System.String",
@@ -71302,7 +75702,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
"StorageKeyType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
@@ -71402,7 +75802,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -71577,7 +75977,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -71785,7 +76185,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -71990,7 +76390,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72174,7 +76574,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
"StorageKeyType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
@@ -72256,7 +76656,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72413,7 +76813,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72588,7 +76988,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72772,7 +77172,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72953,7 +77353,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73158,7 +77558,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73342,7 +77742,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -73619,7 +78019,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -74206,7 +78606,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -74525,7 +78925,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -74886,7 +79286,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -75016,7 +79416,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -75141,7 +79541,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -75242,7 +79642,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -75552,7 +79952,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -75718,7 +80118,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -75839,7 +80239,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76095,7 +80495,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76228,7 +80628,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76412,7 +80812,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -76542,7 +80942,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -76685,7 +81085,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -76810,7 +81210,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -77162,7 +81562,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -77292,7 +81692,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77413,7 +81813,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77621,7 +82021,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77754,7 +82154,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77938,7 +82338,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -78332,7 +82732,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -78625,7 +83025,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OperationId": "System.Guid",
"IsCancellable": "System.Nullable`1[System.Boolean]",
@@ -78959,7 +83359,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -79699,7 +84099,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -81046,7 +85446,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -81381,7 +85781,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -82732,7 +87132,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OperationId": "System.Guid",
"IsCancellable": "System.Nullable`1[System.Boolean]",
@@ -83108,7 +87508,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -83189,7 +87589,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -83200,7 +87600,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -83463,7 +87865,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -83474,7 +87876,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -83745,7 +88149,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -83826,7 +88230,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -84243,7 +88647,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -84632,7 +89036,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -84713,7 +89117,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -85030,7 +89434,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -85333,7 +89737,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -85414,7 +89818,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -85735,7 +90139,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -86018,7 +90422,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -86096,7 +90500,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -86413,7 +90817,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -86696,7 +91100,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -86774,7 +91178,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -87133,7 +91537,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -87464,7 +91868,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -87542,7 +91946,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -87856,7 +92260,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -88084,7 +92488,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -88162,7 +92566,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -88518,7 +92922,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -88794,7 +93198,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -88880,7 +93284,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -89279,7 +93683,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -89632,7 +94036,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -89718,7 +94122,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -90078,7 +94482,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -90314,7 +94718,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -90400,7 +94804,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -90590,7 +94994,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -91519,7 +95923,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -92429,7 +96833,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -92797,7 +97201,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -92939,7 +97343,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -93359,7 +97763,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -94241,7 +98645,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -95286,7 +99690,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -95372,7 +99776,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -95549,7 +99953,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -96072,7 +100476,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -97446,7 +101850,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -97519,7 +101923,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -97985,7 +102389,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -98354,7 +102758,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -98819,7 +103223,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -100276,7 +104680,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -100359,7 +104763,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -101388,7 +105792,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -101574,7 +105978,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -101810,7 +106214,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -102775,7 +107179,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -102858,7 +107262,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -103967,7 +108371,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -104181,7 +108585,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -104419,7 +108823,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -105412,7 +109816,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -105489,7 +109893,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -105806,7 +110210,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -106089,7 +110493,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -106166,7 +110570,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -106483,7 +110887,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -106766,7 +111170,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -106843,7 +111247,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -107198,7 +111602,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -107497,7 +111901,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -107598,7 +112002,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -108633,7 +113037,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -108813,7 +113217,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -109017,7 +113421,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -109744,7 +114148,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -109827,7 +114231,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -110722,7 +115126,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -110878,7 +115282,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -111058,7 +115462,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -111733,7 +116137,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -111819,7 +116223,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -112392,7 +116796,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -112532,7 +116936,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -112963,7 +117367,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -113049,7 +117453,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -113413,7 +117817,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -113649,7 +118053,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -113732,7 +118136,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -114049,7 +118453,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -114332,7 +118736,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -114415,7 +118819,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -114776,7 +119180,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -115081,7 +119485,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -115167,7 +119571,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -115934,7 +120338,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -116224,7 +120628,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -116797,7 +121201,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -116883,7 +121287,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -117675,7 +122079,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -117920,7 +122324,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -118400,7 +122804,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -118486,7 +122890,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -119160,7 +123564,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -119773,7 +124177,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -119882,7 +124286,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -120129,7 +124533,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -120518,7 +124922,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -120924,7 +125328,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -121033,7 +125437,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -121043,9 +125447,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -121053,7 +125458,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -121253,7 +125658,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -121642,7 +126047,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -121652,9 +126057,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -121662,7 +126068,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -122021,7 +126427,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -122130,7 +126536,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -122377,7 +126783,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -122766,7 +127172,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -123172,7 +127578,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -123281,7 +127687,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -123291,9 +127697,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -123301,7 +127708,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -123501,7 +127908,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -123890,7 +128297,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -123900,9 +128307,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -123910,7 +128318,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -124248,7 +128656,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -124358,7 +128766,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -124937,7 +129345,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -125127,7 +129535,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -125464,7 +129872,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -125574,7 +129982,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -125887,7 +130295,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -126152,7 +130560,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -126262,7 +130670,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -126272,9 +130680,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -126282,7 +130691,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -126814,7 +131223,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -126824,9 +131233,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -126834,7 +131244,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -126977,7 +131387,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -126987,9 +131397,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -126997,7 +131408,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -127287,7 +131698,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -127397,7 +131808,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -127407,9 +131818,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -127417,7 +131829,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -127683,7 +132095,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -127693,9 +132105,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -127703,7 +132116,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -127940,7 +132353,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -128049,7 +132462,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -128294,7 +132707,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -128683,7 +133096,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -129087,7 +133500,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -129196,7 +133609,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -129206,9 +133619,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -129216,7 +133630,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -129414,7 +133828,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -129803,7 +134217,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -129813,9 +134227,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -129823,7 +134238,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -130216,7 +134631,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -130325,7 +134740,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -130902,7 +135317,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -131188,7 +135603,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -131495,7 +135910,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -131604,7 +136019,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -131614,9 +136029,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -131624,7 +136040,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -132154,7 +136570,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -132164,9 +136580,10 @@
"Name": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
+ "LongTermRetentionBackupResourceId": "System.String",
"RestorableDroppedDatabaseId": "System.String",
"RecoverableDatabaseId": "System.String",
- "FailoverGroupId": "System.String",
+ "SourceDatabaseId": "System.String",
"StorageContainerSasToken": "System.String",
"StorageContainerUri": "System.String",
"CreateMode": "System.String",
@@ -132174,7 +136591,7 @@
"DefaultSecondaryLocation": "System.String",
"Status": "System.String",
"Collation": "System.String",
- "SourceDatabaseId": "System.String",
+ "FailoverGroupId": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -132413,7 +136830,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -132665,7 +137082,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -133002,7 +137419,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState",
"OperationId": "System.Guid",
@@ -133373,7 +137790,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -134049,7 +138466,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -134294,7 +138711,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -134781,7 +139198,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -135351,7 +139768,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -135951,7 +140368,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -136358,7 +140775,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -136737,7 +141154,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -136946,7 +141363,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -137571,7 +141988,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -138043,7 +142460,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -138694,7 +143111,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState",
"OperationId": "System.Guid",
@@ -139065,7 +143482,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -139145,7 +143562,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -140190,7 +144607,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -140380,7 +144797,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -140649,7 +145066,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -140765,7 +145182,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -141125,7 +145542,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -141427,7 +145844,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionDays": "System.Int32",
"ResourceGroupName": "System.String",
@@ -141502,7 +145919,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -141731,7 +146148,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -142132,7 +146549,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LastAvailableBackupDate": "System.DateTime",
"ResourceGroupName": "System.String",
@@ -142407,7 +146824,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.DateTime",
"DeletionDate": "System.DateTime",
@@ -142733,7 +147150,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -143011,7 +147428,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
"Location": "System.String",
@@ -143284,7 +147701,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -143560,7 +147977,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -143878,7 +148295,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -144238,7 +148655,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -147351,7 +151768,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionDays": "System.Int32",
"ResourceGroupName": "System.String",
@@ -147444,7 +151861,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -147741,7 +152158,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -148170,7 +152587,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -149194,7 +153611,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
"Location": "System.String",
@@ -149251,7 +153668,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -149447,7 +153864,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -149679,7 +154096,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionDays": "System.Int32",
"DeletionDate": "System.Nullable`1[System.DateTime]",
@@ -149760,7 +154177,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -149963,7 +154380,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -150421,7 +154838,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -150796,7 +155213,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -151171,7 +155588,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -151471,7 +155888,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SeverName": "System.String",
"DatabaseId": "System.String",
@@ -151759,7 +156176,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -152108,7 +156525,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TimeStamp": "System.Nullable`1[System.DateTime]",
"LogLevel": "System.String",
@@ -152572,7 +156989,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemberDatabasePassword": "System.Security.SecureString",
"ResourceId": "System.String",
@@ -152969,7 +157386,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]"
@@ -153333,7 +157750,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -154037,7 +158454,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SyncAgentKey": "System.String"
},
@@ -154306,7 +158723,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -154955,7 +159372,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemberDatabasePassword": "System.Security.SecureString",
"ResourceId": "System.String",
@@ -156473,7 +160890,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -156857,7 +161274,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -157290,7 +161707,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemberDatabasePassword": "System.Security.SecureString",
"ResourceId": "System.String",
@@ -157771,7 +162188,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -158162,7 +162579,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -158553,7 +162970,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -159028,7 +163445,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemberDatabasePassword": "System.Security.SecureString",
"ResourceId": "System.String",
@@ -159467,7 +163884,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -159896,7 +164313,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType",
"DatabaseName": "System.String",
@@ -160169,7 +164586,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -160575,7 +164992,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -161307,7 +165724,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -161797,7 +166214,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType",
"DatabaseName": "System.String",
@@ -162202,7 +166619,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -162934,7 +167351,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
"BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType",
@@ -163055,7 +167472,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -163326,7 +167743,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -163543,7 +167960,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
"BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType",
@@ -163644,7 +168061,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -163655,7 +168072,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -163878,7 +168297,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -163889,7 +168308,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164161,7 +168582,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -164432,7 +168853,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -164704,7 +169125,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -164715,7 +169136,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164938,7 +169361,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -164949,7 +169372,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165167,7 +169592,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -165469,7 +169894,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -165624,7 +170049,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -166066,7 +170491,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -166436,7 +170861,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -166558,7 +170983,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -166954,7 +171379,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -167220,7 +171645,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -167231,7 +171656,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -167338,7 +171765,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -167756,7 +172183,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -168126,7 +172553,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -168137,7 +172564,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -168193,7 +172622,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -168570,7 +172999,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -168954,7 +173383,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -169338,7 +173767,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -169675,7 +174104,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -169777,7 +174206,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -169997,7 +174426,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -170229,7 +174658,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -170331,7 +174760,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -170551,7 +174980,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -170783,7 +175212,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -170880,7 +175309,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -171082,7 +175511,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -171290,7 +175719,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -171345,7 +175774,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -171355,19 +175784,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -171492,7 +175922,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -171502,19 +175932,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -171761,7 +176192,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -171816,7 +176247,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -171827,7 +176258,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -171952,7 +176385,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -171963,7 +176396,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -172212,7 +176647,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -172321,7 +176756,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -172331,19 +176766,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -172632,7 +177068,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -172642,19 +177078,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -172881,7 +177318,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -172990,7 +177427,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -173001,7 +177438,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -173290,7 +177729,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -173301,7 +177740,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -173530,7 +177971,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -173585,7 +178026,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -173595,19 +178036,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -173732,7 +178174,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -173742,19 +178184,20 @@
"VCores": "System.Nullable`1[System.Int32]",
"AdministratorPassword": "System.Security.SecureString",
"Location": "System.String",
+ "DnsZone": "System.String",
"DnsZonePartner": "System.String",
"TimezoneId": "System.String",
"ProxyOverride": "System.String",
"Collation": "System.String",
"SubnetId": "System.String",
- "DnsZone": "System.String",
+ "InstancePoolName": "System.String",
"AdministratorLogin": "System.String",
"FullyQualifiedDomainName": "System.String",
"ManagedInstanceName": "System.String",
"ResourceGroupName": "System.String",
"Id": "System.String",
"LicenseType": "System.String",
- "InstancePoolName": "System.String"
+ "MinimalTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -174001,7 +178444,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -174056,7 +178499,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -174067,7 +178510,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -174192,7 +178637,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -174203,7 +178648,9 @@
"SqlAdministratorLogin": "System.String",
"ServerVersion": "System.String",
"FullyQualifiedDomainName": "System.String",
- "ResourceId": "System.String"
+ "ResourceId": "System.String",
+ "MinimalTlsVersion": "System.String",
+ "PublicNetworkAccess": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -174583,7 +179030,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -174751,7 +179198,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -174763,7 +179210,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -175251,7 +179698,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -175346,7 +179793,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -175358,7 +179805,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Code": "System.String",
"Message": "System.String"
@@ -175403,7 +179850,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -175415,7 +179862,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Result": "System.Collections.Generic.IList`1[System.String]"
},
@@ -175538,7 +179985,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -175633,7 +180080,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -175714,7 +180161,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -175809,7 +180256,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -175906,7 +180353,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -176001,7 +180448,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -176096,7 +180543,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -176324,7 +180771,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -176419,7 +180866,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]"
@@ -176464,7 +180911,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -176838,7 +181285,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -176850,7 +181297,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SupportedEditions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]",
"Status": "System.String",
@@ -176896,7 +181343,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -176908,7 +181355,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SupportedServiceObjectives": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]",
"Status": "System.String",
@@ -176954,7 +181401,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -176966,7 +181413,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]",
@@ -177013,7 +181460,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -177025,7 +181472,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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",
@@ -177073,7 +181520,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Limit": "System.Nullable`1[System.Int32]",
"Unit": "System.String",
@@ -177344,7 +181791,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -177439,7 +181886,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -177691,7 +182138,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -177918,7 +182365,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubscriptionId": "System.Nullable`1[System.Guid]",
"Credential": "System.String",
@@ -177969,7 +182416,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -177981,7 +182428,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -178144,7 +182591,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -178156,7 +182603,7 @@
"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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SchemaName": "System.String",
"TableName": "System.String",
@@ -178206,7 +182653,7 @@
"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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.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]"
@@ -178376,7 +182823,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -178471,7 +182918,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]",
"MasterSyncMemberName": "System.String"
@@ -178531,7 +182978,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -178543,7 +182990,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]",
"QuotedName": "System.String"
@@ -178603,7 +183050,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -178615,7 +183062,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"QuotedName": "System.String",
"DataSize": "System.String",
@@ -178836,7 +183283,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -178848,7 +183295,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HasError": "System.Boolean",
"Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]",
@@ -178906,7 +183353,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.3.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.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -178918,7 +183365,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HasError": "System.Boolean",
"IsPrimaryKey": "System.Boolean",
@@ -178978,7 +183425,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179073,7 +183520,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179168,7 +183615,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -179178,7 +183625,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179273,7 +183720,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179368,7 +183815,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.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json
index 7fb540283789..a5e411b7743b 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HasLegalHold": "System.Nullable`1[System.Boolean]",
"Tags": "System.String[]"
@@ -132,7 +132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -230,7 +230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -571,7 +571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -743,7 +743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -1004,7 +1004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Days": "System.Nullable`1[System.Int32]"
@@ -1112,7 +1112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -1404,7 +1404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -1743,7 +1743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
"DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy",
@@ -1867,7 +1867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -2205,7 +2205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -2622,7 +2622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
"DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy",
@@ -2746,7 +2746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -2996,7 +2996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -3263,7 +3263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -3414,7 +3414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -3735,7 +3735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -4036,9 +4036,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -4157,7 +4158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -4255,7 +4256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -4598,7 +4599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -4772,7 +4773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -5037,9 +5038,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -5158,7 +5160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -5256,7 +5258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -5390,9 +5392,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -5705,7 +5708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -5903,7 +5906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -6117,9 +6120,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -6328,7 +6332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -6479,7 +6483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -6598,7 +6602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6835,7 +6839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7012,7 +7016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -7143,7 +7147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7347,7 +7351,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7609,7 +7613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -7709,7 +7713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -8092,7 +8096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -8290,7 +8294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -8599,9 +8603,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -8720,7 +8725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -8818,7 +8823,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -8952,9 +8957,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -9225,7 +9231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -9399,7 +9405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -9589,9 +9595,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -9752,7 +9759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HasLegalHold": "System.Nullable`1[System.Boolean]",
"Tags": "System.String[]"
@@ -9870,7 +9877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -9968,7 +9975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -10309,7 +10316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -10481,7 +10488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -10742,9 +10749,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -10863,7 +10871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -10961,7 +10969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -11075,9 +11083,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -11151,6 +11160,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "AllowProtectedAppendWrite",
+ "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": "Etag",
"AliasList": [
@@ -11305,14 +11332,14 @@
},
{
"ParameterMetadata": {
- "Name": "Etag",
+ "Name": "ImmutabilityPeriod",
"AliasList": [
- "IfMatch"
+ "ImmutabilityPeriodSinceCreationInDays"
],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11331,14 +11358,38 @@
},
{
"ParameterMetadata": {
- "Name": "ImmutabilityPeriod",
+ "Name": "AllowProtectedAppendWrite",
+ "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": "Etag",
"AliasList": [
- "ImmutabilityPeriodSinceCreationInDays"
+ "IfMatch"
],
"Type": {
"Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, 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,
"GenericTypeArguments": [],
@@ -11350,7 +11401,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -11477,14 +11528,14 @@
},
{
"ParameterMetadata": {
- "Name": "Etag",
+ "Name": "ImmutabilityPeriod",
"AliasList": [
- "IfMatch"
+ "ImmutabilityPeriodSinceCreationInDays"
],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11503,12 +11554,14 @@
},
{
"ParameterMetadata": {
- "Name": "ExtendPolicy",
- "AliasList": [],
+ "Name": "Etag",
+ "AliasList": [
+ "IfMatch"
+ ],
"Type": {
- "Namespace": "System.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": [],
@@ -11527,14 +11580,12 @@
},
{
"ParameterMetadata": {
- "Name": "ImmutabilityPeriod",
- "AliasList": [
- "ImmutabilityPeriodSinceCreationInDays"
- ],
+ "Name": "ExtendPolicy",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, 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": [],
@@ -11628,7 +11679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -11727,14 +11778,14 @@
},
{
"ParameterMetadata": {
- "Name": "Etag",
+ "Name": "ImmutabilityPeriod",
"AliasList": [
- "IfMatch"
+ "ImmutabilityPeriodSinceCreationInDays"
],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11753,14 +11804,38 @@
},
{
"ParameterMetadata": {
- "Name": "ImmutabilityPeriod",
+ "Name": "AllowProtectedAppendWrite",
+ "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": "Etag",
"AliasList": [
- "ImmutabilityPeriodSinceCreationInDays"
+ "IfMatch"
],
"Type": {
"Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, 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,
"GenericTypeArguments": [],
@@ -11772,7 +11847,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -11854,7 +11929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -11953,14 +12028,14 @@
},
{
"ParameterMetadata": {
- "Name": "Etag",
+ "Name": "ImmutabilityPeriod",
"AliasList": [
- "IfMatch"
+ "ImmutabilityPeriodSinceCreationInDays"
],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11979,12 +12054,14 @@
},
{
"ParameterMetadata": {
- "Name": "ExtendPolicy",
- "AliasList": [],
+ "Name": "Etag",
+ "AliasList": [
+ "IfMatch"
+ ],
"Type": {
- "Namespace": "System.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": [],
@@ -12003,14 +12080,12 @@
},
{
"ParameterMetadata": {
- "Name": "ImmutabilityPeriod",
- "AliasList": [
- "ImmutabilityPeriodSinceCreationInDays"
- ],
+ "Name": "ExtendPolicy",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, 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": [],
@@ -12078,7 +12153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -12191,14 +12266,14 @@
},
{
"ParameterMetadata": {
- "Name": "Etag",
+ "Name": "ImmutabilityPeriod",
"AliasList": [
- "IfMatch"
+ "ImmutabilityPeriodSinceCreationInDays"
],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12217,14 +12292,38 @@
},
{
"ParameterMetadata": {
- "Name": "ImmutabilityPeriod",
+ "Name": "AllowProtectedAppendWrite",
+ "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": "Etag",
"AliasList": [
- "ImmutabilityPeriodSinceCreationInDays"
+ "IfMatch"
],
"Type": {
"Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, 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,
"GenericTypeArguments": [],
@@ -12236,7 +12335,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -12292,7 +12391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -12405,14 +12504,14 @@
},
{
"ParameterMetadata": {
- "Name": "Etag",
+ "Name": "ImmutabilityPeriod",
"AliasList": [
- "IfMatch"
+ "ImmutabilityPeriodSinceCreationInDays"
],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12431,12 +12530,14 @@
},
{
"ParameterMetadata": {
- "Name": "ExtendPolicy",
- "AliasList": [],
+ "Name": "Etag",
+ "AliasList": [
+ "IfMatch"
+ ],
"Type": {
- "Namespace": "System.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": [],
@@ -12455,14 +12556,12 @@
},
{
"ParameterMetadata": {
- "Name": "ImmutabilityPeriod",
- "AliasList": [
- "ImmutabilityPeriodSinceCreationInDays"
- ],
+ "Name": "ExtendPolicy",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, 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": [],
@@ -12532,9 +12631,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -12614,7 +12714,31 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AllowProtectedAppendWrite",
+ "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
@@ -12672,9 +12796,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Id": "System.String",
"Name": "System.String",
@@ -12735,12 +12860,14 @@
},
{
"ParameterMetadata": {
- "Name": "ExtendPolicy",
- "AliasList": [],
+ "Name": "ImmutabilityPeriod",
+ "AliasList": [
+ "ImmutabilityPeriodSinceCreationInDays"
+ ],
"Type": {
- "Namespace": "System.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.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12759,14 +12886,12 @@
},
{
"ParameterMetadata": {
- "Name": "ImmutabilityPeriod",
- "AliasList": [
- "ImmutabilityPeriodSinceCreationInDays"
- ],
+ "Name": "ExtendPolicy",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, 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": [],
@@ -12827,32 +12952,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "ImmutabilityPeriod",
- "AliasList": [
- "ImmutabilityPeriodSinceCreationInDays"
- ],
- "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": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -12911,7 +13010,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
"DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy",
@@ -13035,7 +13134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -13327,7 +13426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -13666,7 +13765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -13838,7 +13937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -13938,7 +14037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -14050,7 +14149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14287,7 +14386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14491,7 +14590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -14595,7 +14694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14774,7 +14873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -14892,7 +14991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15069,7 +15168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15253,7 +15352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -15397,7 +15496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -15694,7 +15793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -16042,7 +16141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -16186,7 +16285,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -16553,7 +16652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -16984,7 +17083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -17102,7 +17201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -17478,7 +17577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -17792,7 +17891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -18094,7 +18193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -18259,7 +18358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -18377,7 +18476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -18757,7 +18856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -19075,7 +19174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -19381,7 +19480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -19528,7 +19627,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -19687,7 +19786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -19855,7 +19954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -19973,7 +20072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -20098,7 +20197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20140,7 +20239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20225,7 +20324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -20243,7 +20342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -20476,7 +20575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -20619,7 +20718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -21058,7 +21157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -21744,7 +21843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -21877,7 +21976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -22176,7 +22275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -22375,7 +22474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -22731,7 +22830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -23055,7 +23154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -23674,7 +23773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -24357,7 +24456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrefixMatch": "System.String[]",
"BlobTypes": "System.String[]"
@@ -24578,7 +24677,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -24704,7 +24803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -24772,7 +24871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrefixMatch": "System.String[]",
"BlobTypes": "System.String[]"
@@ -24947,7 +25046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -25021,7 +25120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrefixMatch": "System.String[]",
"BlobTypes": "System.String[]"
@@ -25506,7 +25605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -25624,7 +25723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -25875,7 +25974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -26141,7 +26240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -26366,7 +26465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26408,7 +26507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26493,7 +26592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -26511,7 +26610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -26744,7 +26843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -26887,7 +26986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -27386,7 +27485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -27682,7 +27781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -28372,7 +28471,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -28761,7 +28860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -29307,7 +29406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -29912,7 +30011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -30589,7 +30688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -30917,7 +31016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -31032,7 +31131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -31148,7 +31247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -31168,7 +31267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -31333,7 +31432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -31453,7 +31552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -31579,7 +31678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -31683,7 +31782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -31751,7 +31850,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -31857,7 +31956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -32007,7 +32106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -32101,7 +32200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -32278,7 +32377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -32493,7 +32592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32596,7 +32695,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32699,7 +32798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -32717,7 +32816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -32843,7 +32942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32952,7 +33051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33061,7 +33160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -33085,7 +33184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -33395,7 +33494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Unit": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.UsageUnit]",
"CurrentValue": "System.Nullable`1[System.Int32]",
@@ -33767,7 +33866,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DirectoryServiceOptions": "System.String"
},
@@ -33816,7 +33915,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UseSubDomain": "System.Nullable`1[System.Boolean]",
"Name": "System.String"
@@ -33945,7 +34044,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CanFailover": "System.Nullable`1[System.Boolean]",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -34023,7 +34122,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -34190,7 +34289,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -34200,7 +34299,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34236,7 +34335,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34341,7 +34440,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -34351,7 +34450,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34387,7 +34486,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.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.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, 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": [
@@ -34399,7 +34498,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34494,7 +34593,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.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.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, 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": [
@@ -34506,7 +34605,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -35141,7 +35240,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSSku": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Restrictions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.Restriction]",
"Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.SKUCapability]",
@@ -36428,7 +36527,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -36518,10 +36617,11 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UpdateHistory": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]",
- "ImmutabilityPeriodSinceCreationInDays": "System.Int32",
+ "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
+ "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
"State": "System.String",
"Etag": "System.String"
},
@@ -36570,7 +36670,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty",
"GenericTypeArguments": [],
@@ -36580,7 +36680,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Timestamp": "System.Nullable`1[System.DateTime]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -36646,7 +36746,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]",
"HasLegalHold": "System.Nullable`1[System.Boolean]"
@@ -36696,7 +36796,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty",
"GenericTypeArguments": [],
@@ -36706,7 +36806,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Timestamp": "System.Nullable`1[System.DateTime]",
"Tag": "System.String",
@@ -36759,7 +36859,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.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.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, 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": [
@@ -36771,7 +36871,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37085,7 +37185,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CorsRulesProperty": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]"
},
@@ -37144,7 +37244,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule",
"GenericTypeArguments": [],
@@ -37154,7 +37254,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaxAgeInSeconds": "System.Int32",
"AllowedOrigins": "System.String[]",
@@ -37362,7 +37462,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Days": "System.Nullable`1[System.Int32]"
@@ -37427,7 +37527,9 @@
"ChangeFeed": "Microsoft.Azure.Management.Storage.Models.ChangeFeed",
"Cors": "Microsoft.Azure.Management.Storage.Models.CorsRules",
"DeleteRetentionPolicy": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy",
+ "RestorePolicy": "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties",
"Sku": "Microsoft.Azure.Management.Storage.Models.Sku",
+ "IsVersioningEnabled": "System.Nullable`1[System.Boolean]",
"AutomaticSnapshotPolicyEnabled": "System.Nullable`1[System.Boolean]",
"DefaultServiceVersion": "System.String",
"Id": "System.String",
@@ -37502,6 +37604,10 @@
"Name": "deleteRetentionPolicy",
"Type": "System.Reflection.RuntimeParameterInfo"
},
+ {
+ "Name": "isVersioningEnabled",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
{
"Name": "automaticSnapshotPolicyEnabled",
"Type": "System.Reflection.RuntimeParameterInfo"
@@ -37510,6 +37616,10 @@
"Name": "changeFeed",
"Type": "System.Reflection.RuntimeParameterInfo"
},
+ {
+ "Name": "restorePolicy",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
{
"Name": "sku",
"Type": "System.Reflection.RuntimeParameterInfo"
@@ -37572,10 +37682,74 @@
}
]
},
+ "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties": {
+ "Namespace": "Microsoft.Azure.Management.Storage.Models",
+ "Name": "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties, Microsoft.Azure.Management.Storage, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Enabled": "System.Boolean",
+ "Days": "System.Nullable`1[System.Int32]"
+ },
+ "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": "enabled",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "days",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
"Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TierToCool": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification",
"TierToArchive": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification",
@@ -37636,7 +37810,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DaysAfterModificationGreaterThan": "System.Int32"
},
@@ -37828,7 +38002,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Delete": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation"
},
@@ -37887,7 +38061,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DaysAfterCreationGreaterThan": "System.Int32"
},
@@ -38240,7 +38414,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -38250,7 +38424,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -38331,7 +38505,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
"Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter"
@@ -38401,7 +38575,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -38461,7 +38635,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrefixMatch": "System.String[]",
"BlobTypes": "System.String[]"
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Tags.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Tags.dll.json
index 6e42e972eacb..5e87691507c6 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Tags.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Tags.dll.json
@@ -100,6 +100,24 @@
"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": true
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -136,7 +154,7 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "GetPredefinedTagParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -226,6 +244,118 @@
"ValueFromPipelineByPropertyName": false
}
]
+ },
+ {
+ "Name": "GetByResourceIdParameterSet",
+ "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": []
@@ -235,7 +365,7 @@
"NounName": "AzTag",
"Name": "New-AzTag",
"ClassName": "Microsoft.Azure.Commands.Tags.Tag.NewAzureTagCommand",
- "SupportsShouldProcess": false,
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
@@ -291,6 +421,59 @@
"ParameterSets": [
"__AllParameterSets"
]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Tags.Model",
+ "Name": "Microsoft.Azure.Commands.Tags.Model.PSTagResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "PropertiesTable": "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": [
@@ -330,6 +513,42 @@
"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": "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": true
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -366,11 +585,650 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "CreatePredefinedTagParameterSet",
+ "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": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Value",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.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": 1,
+ "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": "CreateByResourceIdParameterSet",
+ "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": "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": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "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": "Remove",
+ "NounName": "AzTag",
+ "Name": "Remove-AzTag",
+ "ClassName": "Microsoft.Azure.Commands.Tags.Tag.RemoveAzureTagCommand",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Common.Tags",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag, Microsoft.Azure.PowerShell.Clients.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTagValue]",
+ "Name": "System.String",
+ "ValuesTable": "System.String",
+ "Count": "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"
+ ]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Tags.Model",
+ "Name": "Microsoft.Azure.Commands.Tags.Model.PSTagResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "PropertiesTable": "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": "Value",
+ "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
+ },
+ {
+ "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": "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": "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": "RemovePredefinedTagParameterSet",
+ "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": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Value",
+ "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": false,
+ "Position": 1,
+ "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": 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": "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": 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": "RemoveByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -388,18 +1246,18 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Value",
+ "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": [],
@@ -409,10 +1267,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
@@ -461,10 +1319,10 @@
"AliasList": []
},
{
- "VerbName": "Remove",
+ "VerbName": "Update",
"NounName": "AzTag",
- "Name": "Remove-AzTag",
- "ClassName": "Microsoft.Azure.Commands.Tags.Tag.RemoveAzureTagCommand",
+ "Name": "Update-AzTag",
+ "ClassName": "Microsoft.Azure.Commands.Tags.Tag.UpdateAzureTagCommand",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -472,14 +1330,15 @@
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Common.Tags",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag, Microsoft.Azure.PowerShell.Clients.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.Commands.Tags.Model",
+ "Name": "Microsoft.Azure.Commands.Tags.Model.PSTagResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTagValue]",
+ "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject",
+ "Id": "System.String",
"Name": "System.String",
- "ValuesTable": "System.String",
- "Count": "System.String"
+ "Type": "System.String",
+ "PropertiesTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -525,7 +1384,7 @@
],
"Parameters": [
{
- "Name": "Name",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -543,14 +1402,14 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Value",
+ "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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -561,22 +1420,107 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PassThru",
+ "Name": "Operation",
"AliasList": [],
"Type": {
- "Namespace": "System.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": "Microsoft.Azure.Commands.Tags.Model",
+ "Name": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "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
+ "ValidateNotNullOrEmpty": true
},
{
"Name": "DefaultProfile",
@@ -614,11 +1558,11 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "UpdateByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -642,14 +1586,14 @@
},
{
"ParameterMetadata": {
- "Name": "Value",
+ "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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -659,23 +1603,147 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Operation",
"AliasList": [],
"Type": {
- "Namespace": "System.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": "Microsoft.Azure.Commands.Tags.Model",
+ "Name": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "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
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "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": [],
@@ -686,8 +1754,13 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -1130,6 +2203,65 @@
],
"Methods": [],
"Constructors": []
+ },
+ "Microsoft.Azure.Commands.Tags.Model.PSTagsObject": {
+ "Namespace": "Microsoft.Azure.Commands.Tags.Model",
+ "Name": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "TagsProperty": "System.Collections.Generic.IDictionary`2[System.String,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": "tagsProperty",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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 d6f866dc5cd7..c654d8e38431 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
@@ -14,7 +14,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -179,7 +179,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -512,7 +512,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -832,7 +832,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -1073,7 +1073,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -1537,7 +1537,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -2098,7 +2098,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -2524,7 +2524,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -2985,7 +2985,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -3228,7 +3228,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -3411,7 +3411,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -3854,7 +3854,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -4429,7 +4429,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -4834,7 +4834,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -5122,7 +5122,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -5387,7 +5387,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -5598,7 +5598,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -5763,7 +5763,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -6028,7 +6028,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -6239,7 +6239,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -6769,7 +6769,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -6843,6 +6843,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "HostNames",
+ "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
+ },
{
"Name": "ResourceGroupName",
"AliasList": [],
@@ -6903,7 +6921,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -7653,7 +7671,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -7750,6 +7768,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "HostNames",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ResourceGroupName",
@@ -8262,7 +8304,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -9019,7 +9061,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -9496,7 +9538,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -9759,7 +9801,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -9924,7 +9966,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -10189,7 +10231,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -10400,7 +10442,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -10565,7 +10607,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -10830,7 +10872,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -11096,7 +11138,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.6.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.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11172,7 +11214,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -11369,7 +11411,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.6.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.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11561,7 +11603,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.6.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.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11657,7 +11699,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -11821,7 +11863,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.6.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.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11926,7 +11968,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SnapshotTime": "System.DateTime",
"ResourceGroupName": "System.String",
@@ -12054,7 +12096,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -12411,7 +12453,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -12943,7 +12985,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -14011,7 +14053,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -14464,7 +14506,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -14848,7 +14890,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -15349,7 +15391,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -15612,7 +15654,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -16005,7 +16047,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -16255,6 +16297,24 @@
"ValidateRangeMax": null,
"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": "ResourceGroupName",
"AliasList": [],
@@ -16297,7 +16357,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -16682,6 +16742,30 @@
"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": "ResourceGroupName",
@@ -16978,7 +17062,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -17446,7 +17530,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -17805,7 +17889,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -17998,7 +18082,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -18189,6 +18273,24 @@
"ValidateRangeMax": null,
"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": "ResourceGroupName",
"AliasList": [],
@@ -18231,7 +18333,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -18471,6 +18573,30 @@
"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": "ResourceGroupName",
@@ -18662,7 +18788,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -18831,7 +18957,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -20185,7 +20311,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -20453,7 +20579,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -20847,7 +20973,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -20989,7 +21115,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -21311,7 +21437,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -21678,7 +21804,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -22193,7 +22319,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -22466,7 +22592,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"KeepAtLeastOneBackup": "System.Nullable`1[System.Boolean]",
@@ -22672,7 +22798,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -23221,7 +23347,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -23508,7 +23634,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DeletionTime": "System.DateTime",
"DeletedSiteId": "System.Int32",
@@ -23834,7 +23960,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"Scheduled": "System.Nullable`1[System.Boolean]",
@@ -23975,7 +24101,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -24332,7 +24458,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -24523,7 +24649,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"KeepAtLeastOneBackup": "System.Nullable`1[System.Boolean]",
@@ -24639,7 +24765,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -24904,7 +25030,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -25115,7 +25241,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"Scheduled": "System.Nullable`1[System.Boolean]",
@@ -25238,7 +25364,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -25503,7 +25629,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -25714,7 +25840,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"Scheduled": "System.Nullable`1[System.Boolean]",
@@ -25855,7 +25981,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -26212,7 +26338,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -26623,7 +26749,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -26980,7 +27106,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -27171,7 +27297,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"CerBlob": "System.Byte[]",
@@ -27592,7 +27718,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -27949,7 +28075,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -28282,7 +28408,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -28927,7 +29053,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -29185,7 +29311,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -29649,7 +29775,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -30106,7 +30232,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -30456,7 +30582,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -30861,7 +30987,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -31149,7 +31275,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -31414,7 +31540,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -31625,7 +31751,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -31772,7 +31898,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -32009,7 +32135,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -32501,7 +32627,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -33038,7 +33164,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -33446,7 +33572,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -33883,7 +34009,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -34126,7 +34252,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.Nullable`1[Microsoft.Azure.Management.WebSites.Models.AzureStorageType]",
"Name": "System.String",
@@ -34787,7 +34913,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -35144,7 +35270,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -35335,7 +35461,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -35520,7 +35646,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -36258,7 +36384,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -37074,7 +37200,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -37293,7 +37419,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -37746,7 +37872,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -38076,7 +38202,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -38457,7 +38583,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -38727,7 +38853,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -38968,7 +39094,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39179,7 +39305,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39326,7 +39452,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39567,7 +39693,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39778,7 +39904,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -40326,7 +40452,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -40442,7 +40568,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -41076,7 +41202,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -41508,7 +41634,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -41771,7 +41897,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -41918,7 +42044,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42159,7 +42285,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42370,7 +42496,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42517,7 +42643,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42758,7 +42884,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -43100,7 +43226,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -43110,7 +43236,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.Nullable`1[Microsoft.Azure.Management.WebSites.Models.AzureStorageType]",
"Name": "System.String",
@@ -47383,7 +47509,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48000,7 +48126,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.6.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.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -48012,7 +48138,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.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Priority": "System.Int32",
"RuleName": "System.String",