diff --git a/ChangeLog.md b/ChangeLog.md index 9ad7b400b330..123886ce3c3a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,85 @@ +## 5.9.0 - May 2021 +#### Az.Aks +* Added support 'AcrNameToAttach' in 'Set-AzAksCluster'. [#14692] +* Added support 'AcrNameToDetach' in 'Set-AzAksCluster'. [#14693] +* Added 'Set-AzAksClusterCredential' to reset the ServicePrincipal of an existing AKS cluster. + +#### Az.Automation +* Added support for User Assigned Identities and PublicNetworkAccess flag + +#### Az.Cdn +* Added cmdlets to support new AFD Premium / Standard SKUs + +#### Az.Compute +* Updated the 'Set-AzVMDiskEncryptionExtension' cmdlet to support ADE extension migration from two pass (version with AAD input parameters) to single pass (version without AAD input parameters). + - Added a switch parameter '-Migrate' to trigger migration workflow. + - Added a switch parameter '-MigrationRecovery' to trigger recovery workflow for VMs experiencing failures after migration from two pass ADE. + +#### Az.DataFactory +* Added User Assigned Identities to Data Factory. +* Updated ADF .Net SDK version to 4.18.0 + +#### Az.FrontDoor +* Allowed Enable-AzFrontDoorCustomDomainHttps's SecretVersion parameter to be optional to support bring-your-own-certificate auto-rotation + +#### Az.KeyVault +* Fixed a bug for 'Get-AzKeyVaultSecret -IncludeVersions' when current version is disabled [#14740] +* Displayed error code and message when updating purged secret [#14800] + +#### Az.RecoveryServices +* Azure Site Recovery support for Multiple IP per NIC for Azure to Azure provider. +* Azure Site Recovery support for SqlServerLicenseType for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for Availability set for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for TargetVmSize for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for ResourceTagging for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for Virtual Machine Scale Set for Azure to Azure provider. +* Added support for restoring unmanaged disks vm as managed disks. + +#### Az.Resources +* Added parameter 'ObjectType' for 'New-AzRoleAssignment' + +#### Az.ServiceFabric +* Upgraded Managed Cluster commands to use Service Fabric Managed Cluster SDK version 1.0.0 which uses service fabric resource provider api-version 2021-05-01. +* 'New-AzServiceFabricManagedCluster' add parameters UpgradeCadence and ZonalResiliency. +* 'New-AzServiceFabricManagedNodeType' add parameters DiskType, VmUserAssignedIdentity, IsStateless and MultiplePlacementGroup. +* 'New-AzServiceFabricManagedClusterService' and 'Set-AzServiceFabricManagedClusterService' mark parameters for deprecation: InstanceCloseDelayDuration, DropSourceReplicaOnMove and ServiceDnsName. They are not supported. + +#### Az.ResourceMover +* General availability of 'Az.ResourceMover' module + +#### Az.Storage +* Supported create/update storage account with KeyExpirationPeriod and SasExpirationPeriod + - 'New-AzStorageAccount' + - 'Set-AzStorageAccount' +* Supported create/update storage account with keyvault encryption and access keyvault with user assigned identity + - 'New-AzStorageAccount' + - 'Set-AzStorageAccount' +* Supported EdgeZone in create storage account + - 'New-AzStorageAccount' +* Fixed an issue that delete immutable blob will prompt incorrect message. + - 'Remove-AzStorageAccount' +* Allowed update Storage Account KeyVault properties by cleanup Keyversion to enable key auto rotation [#14769] + - 'Set-AzStorageAccount' +* Added breaking change warning message for upcoming cmdlet breaking change + - 'Remove-AzRmStorageShare' + +### Thanks to our community contributors +* Thomas Lee (@doctordns), Update Get-AzEnvironment.md (#14704) +* Fabian (@FullByte), Example with wrong parameter (typo) (#14743) +* @gradinDotCom, Update Get-AzNetworkWatcherNextHop.md (#14813) +* Dr Greg Low (@greglow-sdu), Update Get-AzSqlServerDnsAlias.md (#14737) +* Prateek Singh (@PrateekKumarSingh) + * fixing a typo (#14779) + * fixing typo (#14773) +* Remco Eissing (@remcoeissing) + * Fixed typos in Restore-AzApiManagement (#14770) + * Example 2 to use New-AzPolicyExemption (#14716) +* @sharma224 + * User identity changes (#14803) + * Supporting Customer managed key (#14680) +* Yannick Dils (@yannickdils), Update Location explanation (#14719) + + ## 5.8.0 - April 2021 #### Az.Accounts * Fallback to first valid context if current default context key is 'Default' which is invalid diff --git a/setup/generate.ps1 b/setup/generate.ps1 index 3437c7b0eea7..e76831938f87 100644 --- a/setup/generate.ps1 +++ b/setup/generate.ps1 @@ -37,7 +37,7 @@ if( (-not (get-command -ea 0 light)) -or (-not (get-command -ea 0 heat)) -or (-n $outputName ="Az-Cmdlets" # generate the product name from the current month/year. -$productName = "Microsoft Azure PowerShell - April 2021" +$productName = "Microsoft Azure PowerShell - May 2021" # where to put temp files $tmp = Join-Path $env:temp azure-cmdlets-tmp diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1 index dd6fb5902967..bd53b147cbcb 100644 --- a/src/Aks/Aks/Az.Aks.psd1 +++ b/src/Aks/Aks/Az.Aks.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/5/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.0.2' +ModuleVersion = '2.1.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -76,7 +76,7 @@ FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = 'Get-AzAksCluster', 'New-AzAksCluster', 'Remove-AzAksCluster', - 'Import-AzAksCredential', 'Start-AzAksDashboard', + 'Import-AzAksCredential', 'Start-AzAksDashboard', 'Stop-AzAksDashboard', 'Set-AzAksCluster', 'New-AzAksNodePool', 'Update-AzAksNodePool', 'Remove-AzAksNodePool', 'Get-AzAksNodePool', 'Install-AzAksKubectl', 'Get-AzAksVersion', 'Enable-AzAksAddOn', @@ -115,9 +115,9 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Refined error messages of cmdlet failure. -* Upgraded exception handling to use Azure PowerShell related exceptions. -* Fixed the issue that user could not use provided service principal to create Kubernetes cluster. [#13938]' + ReleaseNotes = '* Added support ''AcrNameToAttach'' in ''Set-AzAksCluster''. [#14692] +* Added support ''AcrNameToDetach'' in ''Set-AzAksCluster''. [#14693] +* Added ''Set-AzAksClusterCredential'' to reset the ServicePrincipal of an existing AKS cluster.' # Prerelease string of this module # Prerelease = '' diff --git a/src/Aks/Aks/ChangeLog.md b/src/Aks/Aks/ChangeLog.md index 0f4b9643f1cf..8538122ffd7e 100644 --- a/src/Aks/Aks/ChangeLog.md +++ b/src/Aks/Aks/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 2.1.0 * Added support `AcrNameToAttach` in `Set-AzAksCluster`. [#14692] * Added support `AcrNameToDetach` in `Set-AzAksCluster`. [#14693] * Added `Set-AzAksClusterCredential` to reset the ServicePrincipal of an existing AKS cluster. diff --git a/src/Aks/Aks/Properties/AssemblyInfo.cs b/src/Aks/Aks/Properties/AssemblyInfo.cs index fcf30b31c7b0..af805d05f346 100644 --- a/src/Aks/Aks/Properties/AssemblyInfo.cs +++ b/src/Aks/Aks/Properties/AssemblyInfo.cs @@ -23,5 +23,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("a97e0c3e-e389-46a6-b73d-2b9bd6909bdb")] -[assembly: AssemblyVersion("2.0.2")] -[assembly: AssemblyFileVersion("2.0.2")] +[assembly: AssemblyVersion("2.1.0")] +[assembly: AssemblyFileVersion("2.1.0")] diff --git a/src/Automation/Automation/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1 index fdc40fb63431..25338a6d2abc 100644 --- a/src/Automation/Automation/Az.Automation.psd1 +++ b/src/Automation/Automation/Az.Automation.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.6.0' +ModuleVersion = '1.7.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -168,8 +168,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added support for Customer Managed Key Encryption with System Assigned Identity -* Fixed issue that disables the schedule for update deployment if schedule was re-created with same name' + ReleaseNotes = '* Added support for User Assigned Identities and PublicNetworkAccess flag' # Prerelease string of this module # Prerelease = '' diff --git a/src/Automation/Automation/ChangeLog.md b/src/Automation/Automation/ChangeLog.md index c88a8832a8ff..2ca291783d2d 100644 --- a/src/Automation/Automation/ChangeLog.md +++ b/src/Automation/Automation/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.7.0 * Added support for User Assigned Identities and PublicNetworkAccess flag ## Version 1.6.0 diff --git a/src/Automation/Automation/Properties/AssemblyInfo.cs b/src/Automation/Automation/Properties/AssemblyInfo.cs index a4073002e503..50cd531598bf 100644 --- a/src/Automation/Automation/Properties/AssemblyInfo.cs +++ b/src/Automation/Automation/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.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.Automation.Test")] #endif diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1 index b3ce473a4acf..242a8b54b626 100644 --- a/src/Cdn/Cdn/Az.Cdn.psd1 +++ b/src/Cdn/Cdn/Az.Cdn.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 10/23/2020 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.6.0' +ModuleVersion = '1.7.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -91,22 +91,30 @@ CmdletsToExport = 'Get-AzCdnProfile', 'Get-AzCdnProfileSsoUrl', 'New-AzCdnProfil 'New-AzCdnDeliveryRule', 'New-AzCdnDeliveryRuleCondition', 'New-AzCdnDeliveryRuleAction', 'New-AzCdnDeliveryPolicy', 'New-AzCdnOrigin', 'Remove-AzCdnOrigin', 'New-AzCdnOriginGroup', - 'Get-AzCdnOriginGroup', 'Remove-AzCdnOriginGroup', 'Set-AzCdnOriginGroup', - - 'Get-AzFrontDoorCdnCustomDomain', 'Get-AzFrontDoorCdnEndpoint', 'Get-AzFrontDoorCdnOrigin', - 'Get-AzFrontDoorCdnOriginGroup', 'Get-AzFrontDoorCdnProfile', 'Get-AzFrontDoorCdnRoute', - 'Get-AzFrontDoorCdnRuleSet', 'Get-AzFrontDoorCdnRule', 'Get-AzFrontDoorCdnSecret', 'Get-AzFrontDoorCdnSecurityPolicy', - 'New-AzFrontDoorCdnCustomDomain', 'New-AzFrontDoorCdnEndpoint', 'New-AzFrontDoorCdnOrigin', - 'New-AzFrontDoorCdnOriginGroup', 'New-AzFrontDoorCdnProfile', 'New-AzFrontDoorCdnRoute', - 'New-AzFrontDoorCdnRule', 'New-AzFrontDoorCdnRuleAction', - 'New-AzFrontDoorCdnRuleCondition', 'New-AzFrontDoorCdnRuleSet', - 'New-AzFrontDoorCdnSecret', 'New-AzFrontDoorCdnSecurityPolicy', - 'Remove-AzFrontDoorCdnCustomDomain','Remove-AzFrontDoorCdnEndpoint', 'Remove-AzFrontDoorCdnOriginGroup', - 'Remove-AzFrontDoorCdnOrigin', 'Remove-AzFrontDoorCdnProfile', 'Remove-AzFrontDoorCdnRoute', - 'Remove-AzFrontDoorCdnRule', 'Remove-AzFrontDoorCdnRuleSet', 'Remove-AzFrontDoorCdnSecret', 'Remove-AzFrontDoorCdnSecurityPolicy', - 'Set-AzFrontDoorCdnCustomDomain','Set-AzFrontDoorCdnEndpoint', 'Set-AzFrontDoorCdnOriginGroup', 'Set-AzFrontDoorCdnOrigin', - 'Set-AzFrontDoorCdnProfile', 'Set-AzFrontDoorCdnRoute', 'Set-AzFrontDoorCdnSecret', 'Set-AzFrontDoorCdnSecurityPolicy' - + 'Get-AzCdnOriginGroup', 'Remove-AzCdnOriginGroup', + 'Set-AzCdnOriginGroup', 'Get-AzFrontDoorCdnCustomDomain', + 'Get-AzFrontDoorCdnEndpoint', 'Get-AzFrontDoorCdnOrigin', + 'Get-AzFrontDoorCdnOriginGroup', 'Get-AzFrontDoorCdnProfile', + 'Get-AzFrontDoorCdnRoute', 'Get-AzFrontDoorCdnRuleSet', + 'Get-AzFrontDoorCdnRule', 'Get-AzFrontDoorCdnSecret', + 'Get-AzFrontDoorCdnSecurityPolicy', + 'New-AzFrontDoorCdnCustomDomain', 'New-AzFrontDoorCdnEndpoint', + 'New-AzFrontDoorCdnOrigin', 'New-AzFrontDoorCdnOriginGroup', + 'New-AzFrontDoorCdnProfile', 'New-AzFrontDoorCdnRoute', + 'New-AzFrontDoorCdnRule', 'New-AzFrontDoorCdnRuleAction', + 'New-AzFrontDoorCdnRuleCondition', 'New-AzFrontDoorCdnRuleSet', + 'New-AzFrontDoorCdnSecret', 'New-AzFrontDoorCdnSecurityPolicy', + 'Remove-AzFrontDoorCdnCustomDomain', + 'Remove-AzFrontDoorCdnEndpoint', 'Remove-AzFrontDoorCdnOriginGroup', + 'Remove-AzFrontDoorCdnOrigin', 'Remove-AzFrontDoorCdnProfile', + 'Remove-AzFrontDoorCdnRoute', 'Remove-AzFrontDoorCdnRule', + 'Remove-AzFrontDoorCdnRuleSet', 'Remove-AzFrontDoorCdnSecret', + 'Remove-AzFrontDoorCdnSecurityPolicy', + 'Set-AzFrontDoorCdnCustomDomain', 'Set-AzFrontDoorCdnEndpoint', + 'Set-AzFrontDoorCdnOriginGroup', 'Set-AzFrontDoorCdnOrigin', + 'Set-AzFrontDoorCdnProfile', 'Set-AzFrontDoorCdnRoute', + 'Set-AzFrontDoorCdnSecret', 'Set-AzFrontDoorCdnSecurityPolicy' + # Variables to export from this module # VariablesToExport = @() @@ -140,7 +148,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added cmdlets to support multi-origin and private link functionality ' + ReleaseNotes = '* Added cmdlets to support new AFD Premium / Standard SKUs' # Prerelease string of this module # Prerelease = '' diff --git a/src/Cdn/Cdn/ChangeLog.md b/src/Cdn/Cdn/ChangeLog.md index 5db52b1bed6f..a58e51189737 100644 --- a/src/Cdn/Cdn/ChangeLog.md +++ b/src/Cdn/Cdn/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release + +## Version 1.7.0 * Added cmdlets to support new AFD Premium / Standard SKUs ## Version 1.6.0 diff --git a/src/Cdn/Cdn/Properties/AssemblyInfo.cs b/src/Cdn/Cdn/Properties/AssemblyInfo.cs index 663ab162b643..d647cbe58f27 100644 --- a/src/Cdn/Cdn/Properties/AssemblyInfo.cs +++ b/src/Cdn/Cdn/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("d90791a2-8102-47fc-8150-de25ae796eb1")] -[assembly: AssemblyVersion("1.6.0")] -[assembly: AssemblyFileVersion("1.6.0")] +[assembly: AssemblyVersion("1.7.0")] +[assembly: AssemblyFileVersion("1.7.0")] diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index 4d2ef22555e6..b48f43f3dca2 100644 --- a/src/Compute/Compute/Az.Compute.psd1 +++ b/src/Compute/Compute/Az.Compute.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.11.0' +ModuleVersion = '4.12.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -205,13 +205,9 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Fixed a bug when 1 data disk attached to VMSS for Remove-AzVmssDataDisk [#13368] -* Added new cmdlets to support TrustedLaunch related cmdlets: - - ''Set-AzVmSecurityProfile'' - - ''Set-AzVmUefi'' - - ''Set-AzVmssSecurityProfile'' - - ''Set-AzVmssUefi'' -* Edited default value for Size parameter in New-AzVM cmdlet from Standard_DS1_v2 to Standard_D2s_v3.' + ReleaseNotes = '* Updated the ''Set-AzVMDiskEncryptionExtension'' cmdlet to support ADE extension migration from two pass (version with AAD input parameters) to single pass (version without AAD input parameters). + - Added a switch parameter ''-Migrate'' to trigger migration workflow. + - Added a switch parameter ''-MigrationRecovery'' to trigger recovery workflow for VMs experiencing failures after migration from two pass ADE.' # Prerelease string of this module # Prerelease = '' diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 1b1cd5096ee0..2cfe592ac71e 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,6 +20,8 @@ --> ## Upcoming Release + +## Version 4.12.0 * Updated the `Set-AzVMDiskEncryptionExtension` cmdlet to support ADE extension migration from two pass (version with AAD input parameters) to single pass (version without AAD input parameters). - Added a switch parameter `-Migrate` to trigger migration workflow. - Added a switch parameter `-MigrationRecovery` to trigger recovery workflow for VMs experiencing failures after migration from two pass ADE. diff --git a/src/Compute/Compute/Properties/AssemblyInfo.cs b/src/Compute/Compute/Properties/AssemblyInfo.cs index 3cdd3839623e..e1b565ed787c 100644 --- a/src/Compute/Compute/Properties/AssemblyInfo.cs +++ b/src/Compute/Compute/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")] -[assembly: AssemblyVersion("4.11.0")] -[assembly: AssemblyFileVersion("4.11.0")] +[assembly: AssemblyVersion("4.12.0")] +[assembly: AssemblyFileVersion("4.12.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test")] #endif diff --git a/src/DataFactory/DataFactories/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactories/Properties/AssemblyInfo.cs index 5e54079dc572..38d5a69a3e6d 100644 --- a/src/DataFactory/DataFactories/Properties/AssemblyInfo.cs +++ b/src/DataFactory/DataFactories/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")] -[assembly: AssemblyVersion("1.11.5")] -[assembly: AssemblyFileVersion("1.11.5")] +[assembly: AssemblyVersion("1.12.0")] +[assembly: AssemblyFileVersion("1.12.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataFactories.Test")] #endif diff --git a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 index a6cf30bc65ac..eb8afc5cd16b 100644 --- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 +++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/17/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.11.5' +ModuleVersion = '1.12.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -172,7 +172,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Updated ADF .Net SDK version to 4.15.0' + ReleaseNotes = '* Added User Assigned Identities to Data Factory. +* Updated ADF .Net SDK version to 4.18.0' # Prerelease string of this module # Prerelease = '' diff --git a/src/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md index f74c055750d7..eba22d793512 100644 --- a/src/DataFactory/DataFactoryV2/Changelog.md +++ b/src/DataFactory/DataFactoryV2/Changelog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.12.0 * Added User Assigned Identities to Data Factory. * Updated ADF .Net SDK version to 4.18.0 diff --git a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs index b977974bc6fb..1e75a3946699 100644 --- a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs +++ b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")] -[assembly: AssemblyVersion("1.11.5")] -[assembly: AssemblyFileVersion("1.11.5")] +[assembly: AssemblyVersion("1.12.0")] +[assembly: AssemblyFileVersion("1.12.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.Test")] #endif diff --git a/src/DataProtection/Az.DataProtection.psd1 b/src/DataProtection/Az.DataProtection.psd1 index 1ab455ca7b69..1cfbd285f763 100644 --- a/src/DataProtection/Az.DataProtection.psd1 +++ b/src/DataProtection/Az.DataProtection.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/26/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ RootModule = './Az.DataProtection.psm1' # Version number of this module. -ModuleVersion = '0.1.0' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -45,7 +45,7 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# ClrVersion = '' +# CLRVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' @@ -133,7 +133,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - # ReleaseNotes = '' + ReleaseNotes = '* OnBoarded workload AzureBlobs' # Prerelease string of this module # Prerelease = '' diff --git a/src/DataProtection/Changelog.md b/src/DataProtection/Changelog.md index 35880ef20f4b..fa15bbe26280 100644 --- a/src/DataProtection/Changelog.md +++ b/src/DataProtection/Changelog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.2.0 * OnBoarded workload AzureBlobs ## Version 0.1.0 diff --git a/src/DataProtection/Properties/AssemblyInfo.cs b/src/DataProtection/Properties/AssemblyInfo.cs index 664653df2b76..0af3025da3e2 100644 --- a/src/DataProtection/Properties/AssemblyInfo.cs +++ b/src/DataProtection/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("ab240bd4-c397-4629-a993-21763b35faed")] -[assembly: AssemblyVersion("0.1.0")] -[assembly: AssemblyFileVersion("0.1.0")] +[assembly: AssemblyVersion("0.2.0")] +[assembly: AssemblyFileVersion("0.2.0")] diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index 1ca7ef92bffc..827cdff35442 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/5/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.7.0' +ModuleVersion = '1.8.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -134,8 +134,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added FrontDoorId to properties -* Added JSON Exclusions and RequestBodyCheck support to managed rules' + ReleaseNotes = '* Allowed Enable-AzFrontDoorCustomDomainHttps''s SecretVersion parameter to be optional to support bring-your-own-certificate auto-rotation' # Prerelease string of this module # Prerelease = '' diff --git a/src/FrontDoor/FrontDoor/ChangeLog.md b/src/FrontDoor/FrontDoor/ChangeLog.md index a1fc50a13a3e..f885ef9e96b0 100644 --- a/src/FrontDoor/FrontDoor/ChangeLog.md +++ b/src/FrontDoor/FrontDoor/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.8.0 * Allowed Enable-AzFrontDoorCustomDomainHttps's SecretVersion parameter to be optional to support bring-your-own-certificate auto-rotation ## Version 1.7.0 diff --git a/src/FrontDoor/FrontDoor/Properties/AssemblyInfo.cs b/src/FrontDoor/FrontDoor/Properties/AssemblyInfo.cs index 804bb94e12d7..b4a7b6b60982 100644 --- a/src/FrontDoor/FrontDoor/Properties/AssemblyInfo.cs +++ b/src/FrontDoor/FrontDoor/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("d90791a2-8102-47fc-2483-de25ae796eb1")] -[assembly: AssemblyVersion("1.7.0")] -[assembly: AssemblyFileVersion("1.7.0")] +[assembly: AssemblyVersion("1.8.0")] +[assembly: AssemblyFileVersion("1.8.0")] diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1 index 4b45500ecfe1..a20cbd7fa3a0 100644 --- a/src/KeyVault/KeyVault/Az.KeyVault.psd1 +++ b/src/KeyVault/KeyVault/Az.KeyVault.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '3.4.2' +ModuleVersion = '3.4.3' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -161,7 +161,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Fixed a bug for ''Get-AzKeyVaultSecret -AsPlainText'' if the secret is not found [#14645]' + ReleaseNotes = '* Fixed a bug for ''Get-AzKeyVaultSecret -IncludeVersions'' when current version is disabled [#14740] +* Displayed error code and message when updating purged secret [#14800]' # Prerelease string of this module # Prerelease = '' diff --git a/src/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md index 96cd284f58d8..1af3ff5bc2e5 100644 --- a/src/KeyVault/KeyVault/ChangeLog.md +++ b/src/KeyVault/KeyVault/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 3.4.3 * Fixed a bug for `Get-AzKeyVaultSecret -IncludeVersions` when current version is disabled [#14740] * Displayed error code and message when updating purged secret [#14800] diff --git a/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs b/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs index cd75dbca3860..2176cb864e07 100644 --- a/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs +++ b/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs @@ -29,8 +29,8 @@ [assembly: CLSCompliant(false)] [assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")] -[assembly: AssemblyVersion("3.4.2")] -[assembly: AssemblyFileVersion("3.4.2")] +[assembly: AssemblyVersion("3.4.3")] +[assembly: AssemblyFileVersion("3.4.3")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.KeyVault.Test")] [assembly: InternalsVisibleTo("SecurityDomain.Test")] diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 3d4c990817b3..d96bf80f1bc1 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.4.0' +ModuleVersion = '0.5.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -97,9 +97,8 @@ CmdletsToExport = 'Get-AzNetAppFilesAccount', 'New-AzNetAppFilesAccount', 'Set-AzNetAppFilesBackupPolicy', 'Update-AzNetAppFilesBackupPolicy', 'Remove-AzNetAppFilesBackupPolicy', 'New-AzNetAppFilesBackup', 'Get-AzNetAppFilesBackup', 'Update-AzNetAppFilesBackup', - 'Remove-AzNetAppFilesBackup', 'Get-AzNetAppFilesVolumeBackupStatus', - 'Get-AzNetAppFilesVault', - 'New-AzNetAppFilesActiveDirectory', + 'Remove-AzNetAppFilesBackup', 'Get-AzNetAppFilesVolumeBackupStatus', + 'Get-AzNetAppFilesVault', 'New-AzNetAppFilesActiveDirectory', 'Get-AzNetAppFilesActiveDirectory', 'Update-AzNetAppFilesActiveDirectory', 'Remove-AzNetAppFilesActiveDirectory' @@ -123,9 +122,9 @@ AliasesToExport = 'Get-AnfAccount', 'New-AnfAccount', 'Remove-AnfAccount', 'New-AnfBackupPolicy', 'Set-AnfBackupPolicy', 'Remove-AnfBackupPolicy', 'Update-AnfBackupPolicy', 'Get-AnfBackup', 'New-AnfBackup', 'Remove-AnfBackup', 'Update-AnfBackup', - 'Get-AnfVolumeBackupStatus', - 'Get-AnfActiveDirectory', 'New-AnfActiveDirectory', - 'Remove-AnfActiveDirectory', 'Update-AnfActiveDirectory' + 'Get-AnfVolumeBackupStatus', 'Get-AnfActiveDirectory', + 'New-AnfActiveDirectory', 'Remove-AnfActiveDirectory', + 'Update-AnfActiveDirectory' # DSC resources to export from this module # DscResourcesToExport = @() @@ -154,13 +153,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added SecurityOperators to ActiveDirectory -* Volume list now gets all volumes instead of first over 100 volumes -* Added SnapshotPolicyId to NewAzNetAppFilesVolume to set snapshot policy to volume -* Added AesEncryption, LdapOverTLS, LdapSigning to ActiveDirectory -* Added FailureReason to Backup and backup patch -* Added Encryption and systemData to NetAppAccount -* Added EncryptionKeySource to volume' + ReleaseNotes = '* Added AllowLocalNfsUsersWithLdap to ActiveDirectory +* Added VolumeName to Backup +* Added LdapEnabled to Volume +* Added Get-AzNetAppFilesVolumeBackupStatus to get the status of the backup for a volume' # Prerelease string of this module # Prerelease = '' diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 00ef3dfcc39a..8371cc7c07b4 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.5.0 * Added AllowLocalNfsUsersWithLdap to ActiveDirectory * Added VolumeName to Backup * Added LdapEnabled to Volume diff --git a/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs b/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs index 897bc103ced5..19448e5a802f 100644 --- a/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs +++ b/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("42656543-77AD-4968-BA4B-BE0778705625")] -[assembly: AssemblyVersion("0.4.0")] -[assembly: AssemblyFileVersion("0.4.0")] +[assembly: AssemblyVersion("0.5.0")] +[assembly: AssemblyFileVersion("0.5.0")] diff --git a/src/Peering/Peering/Az.Peering.psd1 b/src/Peering/Peering/Az.Peering.psd1 index 07d452aefbfe..b362da10b292 100644 --- a/src/Peering/Peering/Az.Peering.psd1 +++ b/src/Peering/Peering/Az.Peering.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 10/23/2020 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.2.0' +ModuleVersion = '0.3.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -89,7 +89,7 @@ CmdletsToExport = 'Get-AzPeering', 'Get-AzPeerAsn', 'New-AzPeerAsn', 'New-AzPeer 'Get-AzPeeringRegisteredPrefix', 'Remove-AzPeeringRegisteredPrefix', 'New-AzPeeringRegisteredAsn', 'Set-AzPeeringRegisteredAsn', 'Get-AzPeeringRegisteredAsn', 'Remove-AzPeeringRegisteredAsn', - 'New-AzPeerAsnContactDetail', 'Get-AzPeeringReceivedRoute', + 'New-AzPeerAsnContactDetail', 'Get-AzPeeringReceivedRoute', 'Get-AzPeeringCdnPeeringPrefix' # Variables to export from this module @@ -125,7 +125,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Adding support for Received routes' + ReleaseNotes = '* Added support for cdn peering prefixes' # Prerelease string of this module # Prerelease = '' diff --git a/src/Peering/Peering/ChangeLog.md b/src/Peering/Peering/ChangeLog.md index 9b07b2dd6844..56cd88f6ac1b 100644 --- a/src/Peering/Peering/ChangeLog.md +++ b/src/Peering/Peering/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.3.0 * Added support for cdn peering prefixes ## Version 0.2.0 diff --git a/src/Peering/Peering/Properties/AssemblyInfo.cs b/src/Peering/Peering/Properties/AssemblyInfo.cs index f9e67b9f4a02..f68c337f4dd9 100644 --- a/src/Peering/Peering/Properties/AssemblyInfo.cs +++ b/src/Peering/Peering/Properties/AssemblyInfo.cs @@ -23,5 +23,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("65C9118E-0F63-42F7-BC61-55D69073B75D")] -[assembly: AssemblyVersion("0.2.0")] -[assembly: AssemblyFileVersion("0.2.0")] +[assembly: AssemblyVersion("0.3.0")] +[assembly: AssemblyFileVersion("0.3.0")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs index 64ee91235068..f6739ca2b94f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/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.0.0")] -[assembly: AssemblyVersion("3.5.0")] -[assembly: AssemblyFileVersion("3.5.0")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs index 64ee91235068..f6739ca2b94f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Logger/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.0.0")] -[assembly: AssemblyVersion("3.5.0")] -[assembly: AssemblyFileVersion("3.5.0")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs index 64ee91235068..f6739ca2b94f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/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.0.0")] -[assembly: AssemblyVersion("3.5.0")] -[assembly: AssemblyFileVersion("3.5.0")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs index 64ee91235068..f6739ca2b94f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/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.0.0")] -[assembly: AssemblyVersion("3.5.0")] -[assembly: AssemblyFileVersion("3.5.0")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs index 64ee91235068..f6739ca2b94f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/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.0.0")] -[assembly: AssemblyVersion("3.5.0")] -[assembly: AssemblyFileVersion("3.5.0")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs index 271ee627d3d0..b6c527d443ff 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/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.0.0")] -[assembly: AssemblyVersion("3.5.0")] -[assembly: AssemblyFileVersion("3.5.0")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs index 21936326d013..82ffefd9478d 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("3.5.0")] -[assembly: AssemblyFileVersion("3.5.0")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index f8de04828259..4febdbd6fdcd 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/17/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '3.5.0' +ModuleVersion = '3.6.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -122,8 +122,8 @@ CmdletsToExport = 'Get-AzRecoveryServicesBackupProperty', 'New-AzRecoveryServicesAsrStorageClassificationMapping', 'New-AzRecoveryServicesAsrvCenter', 'New-AzRecoveryServicesAsrAzureToAzureDiskReplicationConfig', - 'New-AzRecoveryServicesAsrVMNicConfig', - 'New-AzRecoveryServicesAsrVMNicIPConfig', + 'New-AzRecoveryServicesAsrVMNicConfig', + 'New-AzRecoveryServicesAsrVMNicIPConfig', 'Remove-AzRecoveryServicesAsrFabric', 'Remove-AzRecoveryServicesAsrNetworkMapping', 'Remove-AzRecoveryServicesAsrPolicy', @@ -268,7 +268,13 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added Cross Zonal Restore for managed virtual machines. ' + ReleaseNotes = '* Azure Site Recovery support for Multiple IP per NIC for Azure to Azure provider. +* Azure Site Recovery support for SqlServerLicenseType for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for Availability set for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for TargetVmSize for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for ResourceTagging for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for Virtual Machine Scale Set for Azure to Azure provider. +* Added support for restoring unmanaged disks vm as managed disks.' # Prerelease string of this module # Prerelease = '' diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 33de88942683..1125b880202d 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 3.6.0 * Azure Site Recovery support for Multiple IP per NIC for Azure to Azure provider. * Azure Site Recovery support for SqlServerLicenseType for VMware to Azure and HyperV to Azure providers. * Azure Site Recovery support for Availability set for VMware to Azure and HyperV to Azure providers. diff --git a/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs index 99ef1a4463d8..8c8aca66e373 100644 --- a/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("3.5.0")] -[assembly: AssemblyFileVersion("3.5.0")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/ResourceGraph/ResourceGraph.Autorest/Properties/AssemblyInfo.cs b/src/ResourceGraph/ResourceGraph.Autorest/Properties/AssemblyInfo.cs index 4e5687108f2a..afdcd3a06c0c 100644 --- a/src/ResourceGraph/ResourceGraph.Autorest/Properties/AssemblyInfo.cs +++ b/src/ResourceGraph/ResourceGraph.Autorest/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("26ae9224-1e6e-11eb-adc1-0242ac120002")] -[assembly: AssemblyVersion("0.9.0")] -[assembly: AssemblyFileVersion("0.9.0")] +[assembly: AssemblyVersion("0.10.0")] +[assembly: AssemblyFileVersion("0.10.0")] diff --git a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 index 7acc3117920a..29b3d7e14b69 100644 --- a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 +++ b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.9.0' +ModuleVersion = '0.10.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -113,9 +113,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added support for the new api version with the ability to query with management group scopes using -ManagementGroup param. -* Deprecated parameter -Include. -* Introduced -SkipToken param and aligned max resources returned per page with server value.' + ReleaseNotes = '* Changed output of ''Search-AzGraph'' to PSResourceGraphResponse which wrapped previous output under Data property.' # Prerelease string of this module # Prerelease = '' diff --git a/src/ResourceGraph/ResourceGraph/ChangeLog.md b/src/ResourceGraph/ResourceGraph/ChangeLog.md index 92b7c4e41191..b0c35744ab08 100644 --- a/src/ResourceGraph/ResourceGraph/ChangeLog.md +++ b/src/ResourceGraph/ResourceGraph/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.10.0 * Changed output of `Search-AzGraph` to PSResourceGraphResponse which wrapped previous output under Data property. ## Version 0.9.0 diff --git a/src/ResourceGraph/ResourceGraph/Properties/AssemblyInfo.cs b/src/ResourceGraph/ResourceGraph/Properties/AssemblyInfo.cs index b13529e03ed8..a1ef3996ccc8 100644 --- a/src/ResourceGraph/ResourceGraph/Properties/AssemblyInfo.cs +++ b/src/ResourceGraph/ResourceGraph/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ [assembly: CLSCompliant(false)] [assembly: Guid("cdfd4e1b-bb5f-439b-8843-e6127cd9b8ad")] -[assembly: AssemblyVersion("0.9.0")] -[assembly: AssemblyFileVersion("0.9.0")] +[assembly: AssemblyVersion("0.10.0")] +[assembly: AssemblyFileVersion("0.10.0")] diff --git a/src/ResourceMover/Az.ResourceMover.psd1 b/src/ResourceMover/Az.ResourceMover.psd1 index da15d5fa6567..92b299d39ad4 100644 --- a/src/ResourceMover/Az.ResourceMover.psd1 +++ b/src/ResourceMover/Az.ResourceMover.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/26/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ RootModule = './Az.ResourceMover.psm1' # Version number of this module. -ModuleVersion = '0.2.0' +ModuleVersion = '1.0.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -119,9 +119,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added new cmdlets ''Invoke-AzResourceMoverBulkRemove'', ''Get-AzResourceMoverRequiredForResources'' -* Added alias to ''Add-AzResourceMoverMoveResource'': ''Update-AzResourceMoverMoveResource'' -* Flattened object ''ResourceSettings''' + ReleaseNotes = '* General availability of ''Az.ResourceMover'' module' # Prerelease string of this module # Prerelease = '' diff --git a/src/ResourceMover/Changelog.md b/src/ResourceMover/Changelog.md index 4aa2d4e2dd17..7aa8ef53a2c1 100644 --- a/src/ResourceMover/Changelog.md +++ b/src/ResourceMover/Changelog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.0.0 * General availability of 'Az.ResourceMover' module ## Version 0.2.0 diff --git a/src/ResourceMover/Properties/AssemblyInfo.cs b/src/ResourceMover/Properties/AssemblyInfo.cs index 17e93b0a7568..54740d1bbe47 100644 --- a/src/ResourceMover/Properties/AssemblyInfo.cs +++ b/src/ResourceMover/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("42a3d477-2703-486c-8b6d-f48a50d01f22")] -[assembly: AssemblyVersion("0.2.0")] -[assembly: AssemblyFileVersion("0.2.0")] +[assembly: AssemblyVersion("1.0.0")] +[assembly: AssemblyFileVersion("1.0.0")] diff --git a/src/Resources/ResourceManager/Properties/AssemblyInfo.cs b/src/Resources/ResourceManager/Properties/AssemblyInfo.cs index 5461038ddd6c..474ac2421c8d 100644 --- a/src/Resources/ResourceManager/Properties/AssemblyInfo.cs +++ b/src/Resources/ResourceManager/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("e8f34267-c461-4eae-b156-5f3528553d10")] -[assembly: AssemblyVersion("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] +[assembly: AssemblyVersion("3.5.0")] +[assembly: AssemblyFileVersion("3.5.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")] [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.Test")] diff --git a/src/Resources/Resources/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1 index 3a1222acb615..2e9ed39c4ad1 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: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '3.4.1' +ModuleVersion = '3.5.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -197,12 +197,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added upcoming breaking change warnings on below cmdlets, because the value of ''IdentifierUris'' parameter will need verified domain. - - ''New-AzADApplication'' - - ''Update-AzADApplication'' - - ''New-AzADServicePrincipal'' - - ''Update-AzADServicePrincipal'' -* Ignored Bicep warning message in error stream if exitcode equals zero.' + ReleaseNotes = '* Added parameter ''ObjectType'' for ''New-AzRoleAssignment''' # Prerelease string of this module # Prerelease = '' diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index ec286e41e004..8dfa54b12381 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release + +## Version 3.5.0 * Added parameter `ObjectType` for `New-AzRoleAssignment` ## Version 3.4.1 diff --git a/src/Resources/Resources/Properties/AssemblyInfo.cs b/src/Resources/Resources/Properties/AssemblyInfo.cs index 5c4708bca8c8..7ff701d6e759 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("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] +[assembly: AssemblyVersion("3.5.0")] +[assembly: AssemblyFileVersion("3.5.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")] #endif diff --git a/src/Resources/Tags/Properties/AssemblyInfo.cs b/src/Resources/Tags/Properties/AssemblyInfo.cs index 40c8711dd405..329bbd554829 100644 --- a/src/Resources/Tags/Properties/AssemblyInfo.cs +++ b/src/Resources/Tags/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")] -[assembly: AssemblyVersion("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] +[assembly: AssemblyVersion("3.5.0")] +[assembly: AssemblyFileVersion("3.5.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")] #endif diff --git a/src/Security/Security/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1 index 4db715508dd5..e4e79e72ac14 100644 --- a/src/Security/Security/Az.Security.psd1 +++ b/src/Security/Security/Az.Security.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.11.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -160,13 +160,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added Sql Vulnerability Assessment cmdlets for IAAS: - ''Get-AzSecuritySqlVulnerabilityAssessmentScanRecord'' - ''Get-AzSecuritySqlVulnerabilityAssessmentScanResult'' - ''Add-AzSecuritySqlVulnerabilityAssessmentBaseline'' - ''Remove-AzSecuritySqlVulnerabilityAssessmentBaseline'' - ''Get-AzSecuritySqlVulnerabilityAssessmentBaseline'' - ''Set-AzSecuritySqlVulnerabilityAssessmentBaseline''' + ReleaseNotes = '* Fix typo in printing SQL vulnerability assessment scan results' # Prerelease string of this module # Prerelease = '' diff --git a/src/Security/Security/ChangeLog.md b/src/Security/Security/ChangeLog.md index 528d18a07dde..d58143aecaf9 100644 --- a/src/Security/Security/ChangeLog.md +++ b/src/Security/Security/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release + +## Version 0.11.0 * Fix typo in printing SQL vulnerability assessment scan results ## Version 0.10.0 diff --git a/src/Security/Security/Properties/AssemblyInfo.cs b/src/Security/Security/Properties/AssemblyInfo.cs index 8ce83c229cb1..e4698e96a0cd 100644 --- a/src/Security/Security/Properties/AssemblyInfo.cs +++ b/src/Security/Security/Properties/AssemblyInfo.cs @@ -45,5 +45,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("0.10.0")] -[assembly: AssemblyFileVersion("0.10.0")] +[assembly: AssemblyVersion("0.11.0")] +[assembly: AssemblyFileVersion("0.11.0")] diff --git a/src/SecurityInsights/SecurityInsights/Az.SecurityInsights.psd1 b/src/SecurityInsights/SecurityInsights/Az.SecurityInsights.psd1 index e2c63eb55c29..51dccbb6c73b 100644 --- a/src/SecurityInsights/SecurityInsights/Az.SecurityInsights.psd1 +++ b/src/SecurityInsights/SecurityInsights/Az.SecurityInsights.psd1 @@ -1,9 +1,9 @@ # -# Module manifest for module 'Az.Security' +# Module manifest for module 'Az.SecurityInsights' # # Generated by: Microsoft Corporation # -# Generated on: 7/30/2020 +# Generated on: 4/29/2021 # @{ @@ -12,13 +12,13 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.0' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' # ID used to uniquely identify this module -GUID = '453D4FB9-65EC-4CF1-8358-6A0FBD995D19' +GUID = '453d4fb9-65ec-4cf1-8358-6a0fbd995d19' # Author of this module Author = 'Microsoft Corporation' @@ -74,31 +74,19 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights.dll') FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = 'Get-AzSentinelAlertRuleAction', - 'New-AzSentinelAlertRuleAction', - 'Remove-AzSentinelAlertRuleAction', - 'Update-AzSentinelAlertRuleAction', - 'Get-AzSentinelAlertRule', - 'New-AzSentinelAlertRule', - 'Remove-AzSentinelAlertRule', - 'Update-AzSentinelAlertRule', - 'Get-AzSentinelAlertRuleTemplate', - 'Get-AzSentinelBookmark', - 'New-AzSentinelBookmark', - 'Remove-AzSentinelBookmark', - 'Update-AzSentinelBookmark', - 'Get-AzSentinelDataConnector', - 'New-AzSentinelDataConnector', - 'Remove-AzSentinelDataConnector', - 'Update-AzSentinelDataConnector', - 'Get-AzSentinelIncidentComment', - 'New-AzSentinelIncidentComment', - 'Get-AzSentinelIncident', - 'New-AzSentinelIncident', - 'New-AzSentinelIncidentOwner', - 'Remove-AzSentinelIncident', - 'Update-AzSentinelIncident' - +CmdletsToExport = 'Get-AzSentinelAlertRuleAction', 'New-AzSentinelAlertRuleAction', + 'Remove-AzSentinelAlertRuleAction', + 'Update-AzSentinelAlertRuleAction', 'Get-AzSentinelAlertRule', + 'New-AzSentinelAlertRule', 'Remove-AzSentinelAlertRule', + 'Update-AzSentinelAlertRule', 'Get-AzSentinelAlertRuleTemplate', + 'Get-AzSentinelBookmark', 'New-AzSentinelBookmark', + 'Remove-AzSentinelBookmark', 'Update-AzSentinelBookmark', + 'Get-AzSentinelDataConnector', 'New-AzSentinelDataConnector', + 'Remove-AzSentinelDataConnector', 'Update-AzSentinelDataConnector', + 'Get-AzSentinelIncidentComment', 'New-AzSentinelIncidentComment', + 'Get-AzSentinelIncident', 'New-AzSentinelIncident', + 'New-AzSentinelIncidentOwner', 'Remove-AzSentinelIncident', + 'Update-AzSentinelIncident' # Variables to export from this module # VariablesToExport = @() @@ -121,7 +109,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','Provider','SecurityInsights', 'AzureSentinel' + Tags = 'Azure','ResourceManager','ARM','Provider','SecurityInsights','AzureSentinel' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -133,7 +121,9 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Initial Release' + ReleaseNotes = '* Added support for Teams in Office Connector +* Bug Fixes +* Updated Documentations' # Prerelease string of this module # Prerelease = '' diff --git a/src/SecurityInsights/SecurityInsights/ChangeLog.md b/src/SecurityInsights/SecurityInsights/ChangeLog.md index 40694247fb81..2f39e6318a72 100644 --- a/src/SecurityInsights/SecurityInsights/ChangeLog.md +++ b/src/SecurityInsights/SecurityInsights/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release + +## Version 0.2.0 * Added support for Teams in Office Connector * Bug Fixes * Updated Documentations diff --git a/src/SecurityInsights/SecurityInsights/Properties/AssemblyInfo.cs b/src/SecurityInsights/SecurityInsights/Properties/AssemblyInfo.cs index cfdbc347519d..51f5c6bfd664 100644 --- a/src/SecurityInsights/SecurityInsights/Properties/AssemblyInfo.cs +++ b/src/SecurityInsights/SecurityInsights/Properties/AssemblyInfo.cs @@ -45,5 +45,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("0.1.0")] -[assembly: AssemblyFileVersion("0.1.0")] +[assembly: AssemblyVersion("0.2.0")] +[assembly: AssemblyFileVersion("0.2.0")] diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index 31239547e016..b911dbd0aca9 100644 --- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 +++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/17/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.3.0' +ModuleVersion = '2.4.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -164,33 +164,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added parameters ''VMImagePublisher'', ''VMImageOffer'', ''VMImageSku'', ''VMImageVersion'' to ''Add-AzServiceFabricNodeType'' to facilitate easy alternate OS image creation for new node type. -* Added parameter ''IsPrimaryNodeType'' to ''Add-AzServiceFabricNodeType'' to be able to create an additional primary node type, for the purpose of transitioning the primary node type to another one in the case of OS migration. -* ''Add-AzServiceFabricNodeType'' now correctly copies the LinuxDiagnostic extension. This was previously not working for Linux. -* ''Add-AzServiceFabricNodeType'' now correctly copies the RDP/SSH load balancer inbound NAT port mapping to the new node type. -* Added template for ''UbuntuServer1804'' for creating Ubuntu 18.04 clusters using ''New-AzServiceFabricCluster''. -* ''Remove-AzServiceFabricNodeType'' was incorrectly blocking Bronze durability node types for removal, and this has been updated to only block when the Bronze durability level differs between the SF node type and VMSS setting. -* Added cmdlet ''Update-AzServiceFabricVmImage'' to update the delivered SF runtime package type. This must be changed when migrating from Ubuntu 16 to 18. -* Added cmdlet ''Update-AzServiceFabricNodeType'' to update the properties of a cluster node type. For now this is solely used to update whether the node type is primary via bool parameter ''-IsPrimaryNodeType False''. -* ''Update-AzServiceFabricReliability'' is now able to update reliability level when the cluster has more than one primary node type. To do this, the name of the node type is supplied via the new -NodeType parameter. -* Added new cmdlets for managed applications: - - ''New-AzServiceFabricManagedClusterApplication'' - - ''Get-AzServiceFabricManagedClusterApplication'' - - ''Set-AzServiceFabricManagedClusterApplication'' - - ''Remove-AzServiceFabricManagedClusterApplication'' - - ''New-AzServiceFabricManagedClusterApplicationType'' - - ''Get-AzServiceFabricManagedClusterApplicationType'' - - ''Set-AzServiceFabricManagedClusterApplicationType'' - - ''Remove-AzServiceFabricManagedClusterApplicationType'' - - ''New-AzServiceFabricManagedClusterApplicationTypeVersion'' - - ''Get-AzServiceFabricManagedClusterApplicationTypeVersion'' - - ''Set-AzServiceFabricManagedClusterApplicationTypeVersion'' - - ''Remove-AzServiceFabricManagedClusterApplicationTypeVersion'' - - ''New-AzServiceFabricManagedClusterService'' - - ''Get-AzServiceFabricManagedClusterService'' - - ''Set-AzServiceFabricManagedClusterService'' - - ''Remove-AzServiceFabricManagedClusterService'' -* Upgraded Managed Cluster commands to use Service Fabric Managed Cluster SDK version 1.0.0-beta.1 which uses service fabric resource provider api-version 2021-01-01-preview.' + ReleaseNotes = '* Upgraded Managed Cluster commands to use Service Fabric Managed Cluster SDK version 1.0.0 which uses service fabric resource provider api-version 2021-05-01. +* ''New-AzServiceFabricManagedCluster'' add parameters UpgradeCadence and ZonalResiliency. +* ''New-AzServiceFabricManagedNodeType'' add parameters DiskType, VmUserAssignedIdentity, IsStateless and MultiplePlacementGroup. +* ''New-AzServiceFabricManagedClusterService'' and ''Set-AzServiceFabricManagedClusterService'' mark parameters for deprecation: InstanceCloseDelayDuration, DropSourceReplicaOnMove and ServiceDnsName. They are not supported.' # Prerelease string of this module # Prerelease = '' diff --git a/src/ServiceFabric/ServiceFabric/ChangeLog.md b/src/ServiceFabric/ServiceFabric/ChangeLog.md index 01fd5744102a..fc2af394002a 100644 --- a/src/ServiceFabric/ServiceFabric/ChangeLog.md +++ b/src/ServiceFabric/ServiceFabric/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 2.4.0 * Upgraded Managed Cluster commands to use Service Fabric Managed Cluster SDK version 1.0.0 which uses service fabric resource provider api-version 2021-05-01. * `New-AzServiceFabricManagedCluster` add parameters UpgradeCadence and ZonalResiliency. * `New-AzServiceFabricManagedNodeType` add parameters DiskType, VmUserAssignedIdentity, IsStateless and MultiplePlacementGroup. diff --git a/src/ServiceFabric/ServiceFabric/Properties/AssemblyInfo.cs b/src/ServiceFabric/ServiceFabric/Properties/AssemblyInfo.cs index ba34560633c1..6fb34b0d54da 100644 --- a/src/ServiceFabric/ServiceFabric/Properties/AssemblyInfo.cs +++ b/src/ServiceFabric/ServiceFabric/Properties/AssemblyInfo.cs @@ -18,8 +18,8 @@ using System.Runtime.InteropServices; [assembly: Guid("B965F0A8-D610-4275-B5EA-8F2D806F337C")] -[assembly: AssemblyVersion("2.3.0")] -[assembly: AssemblyFileVersion("2.3.0")] +[assembly: AssemblyVersion("2.4.0")] +[assembly: AssemblyFileVersion("2.4.0")] [assembly: AssemblyTitle("Microsoft Azure Powershell - Service Fabric")] [assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] diff --git a/src/StackHCI/Az.StackHCI.psd1 b/src/StackHCI/Az.StackHCI.psd1 index d96b6e018c5d..b04564ef5b5b 100644 --- a/src/StackHCI/Az.StackHCI.psd1 +++ b/src/StackHCI/Az.StackHCI.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 11/13/2020 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ RootModule = './Az.StackHCI.psm1' # Version number of this module. -ModuleVersion = '0.4.1' +ModuleVersion = '0.5.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -108,13 +108,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Made changes to registration script to register the GA version of On-Premises Azure Stack HCI with Azure. - - Supports registering with user provided certificate thumbprint. - - Supports On-Premises Azure Stack HCI OS changes to use independent certificate on cluster nodes. - - Cleans up resource group during unregistration. - - Improves registration output and logging. -* [Breaking Change] Breaks the public preview registration of On-Premises Azure Stack HCI with Azure. - - To register public preview On-Premises Azure Stack HCi with Azure, use 0.3.1 version of Az.StackHCI.' + ReleaseNotes = '* Made changes to registration script to add retries for AAD operations and to add AzureChinaCloud support. + - Added retries for AAD operations for reliability. + - Supports registration in AzureChinaCloud. + - Supports Tag while resource creation.' # Prerelease string of this module # Prerelease = '' diff --git a/src/StackHCI/ChangeLog.md b/src/StackHCI/ChangeLog.md index 38a7a4ed11dd..8edda2a50845 100644 --- a/src/StackHCI/ChangeLog.md +++ b/src/StackHCI/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.5.0 * Made changes to registration script to add retries for AAD operations and to add AzureChinaCloud support. - Added retries for AAD operations for reliability. - Supports registration in AzureChinaCloud. diff --git a/src/StackHCI/Properties/AssemblyInfo.cs b/src/StackHCI/Properties/AssemblyInfo.cs index 5a5237a7efc1..5403aa447de4 100644 --- a/src/StackHCI/Properties/AssemblyInfo.cs +++ b/src/StackHCI/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("8853A329-2E41-4A6A-808B-9D1170A5BBB4")] -[assembly: AssemblyVersion("0.4.1")] -[assembly: AssemblyFileVersion("0.4.1")] +[assembly: AssemblyVersion("0.5.0")] +[assembly: AssemblyFileVersion("0.5.0")] diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index ab209e9cf7a0..332ef0cc59c5 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: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '3.5.1' +ModuleVersion = '3.6.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -219,8 +219,20 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Fixed copy blob fail with source context as Oauth [#14662] - - ''Start-AzStorageBlobCopy''' + ReleaseNotes = '* Supported create/update storage account with KeyExpirationPeriod and SasExpirationPeriod + - ''New-AzStorageAccount'' + - ''Set-AzStorageAccount'' +* Supported create/update storage account with keyvault encryption and access keyvault with user assigned identity + - ''New-AzStorageAccount'' + - ''Set-AzStorageAccount'' +* Supported EdgeZone in create storage account + - ''New-AzStorageAccount'' +* Fixed an issue that delete immutable blob will prompt incorrect message. + - ''Remove-AzStorageAccount'' +* Allowed update Storage Account KeyVault properties by cleanup Keyversion to enable key auto rotation [#14769] + - ''Set-AzStorageAccount'' +* Added breaking change warning message for upcoming cmdlet breaking change + - ''Remove-AzRmStorageShare''' # Prerelease string of this module # Prerelease = '' diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index e0d233bb959f..3902d8a20b23 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 3.6.0 * Supported create/update storage account with KeyExpirationPeriod and SasExpirationPeriod - `New-AzStorageAccount` - `Set-AzStorageAccount` diff --git a/src/Storage/Storage.Management/Properties/AssemblyInfo.cs b/src/Storage/Storage.Management/Properties/AssemblyInfo.cs index d86b386dbed2..239a0c7f6d26 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("3.5.1")] -[assembly: AssemblyFileVersion("3.5.1")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] diff --git a/src/Storage/Storage/Properties/AssemblyInfo.cs b/src/Storage/Storage/Properties/AssemblyInfo.cs index 0b7a48f05fec..0eb9769a9d10 100644 --- a/src/Storage/Storage/Properties/AssemblyInfo.cs +++ b/src/Storage/Storage/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("1.0.0")] -[assembly: AssemblyVersion("3.5.1")] -[assembly: AssemblyFileVersion("3.5.1")] +[assembly: AssemblyVersion("3.6.0")] +[assembly: AssemblyFileVersion("3.6.0")] [assembly: CLSCompliant(false)] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Storage.Test")] diff --git a/src/Synapse/Synapse/Az.Synapse.psd1 b/src/Synapse/Synapse/Az.Synapse.psd1 index 167b5349aaf6..b750e7274314 100644 --- a/src/Synapse/Synapse/Az.Synapse.psd1 +++ b/src/Synapse/Synapse/Az.Synapse.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.11.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -218,15 +218,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for Synapse Role-based access control - - Upgraded Azure.Analytics.Synapse.AccessControl to 1.0.0-preview.3 - - Updated ''New-AzSynapseRoleAssignment'' cmdlet - - Updated ''Get-AzSynapseRoleAssignment'' cmdlet - - Updated ''Remove-AzSynapseRoleAssignment'' cmdlet - - Added ''Get-AzSynapseRoleScope'' cmdlet -* Renamed -AllowAllAzureIP to -AllowAllAzureIp and changed IP range to 0.0.0.0-0.0.0.0 -* Added -AllowAllIp and set IP range to 0.0.0.0-255.255.255.255 -* Fixed the issue of retrieving Apache Spark pool information through management API' + ReleaseNotes = '* Removed principaltype in Synapse Role-based access control' # Prerelease string of this module # Prerelease = '' diff --git a/src/Synapse/Synapse/ChangeLog.md b/src/Synapse/Synapse/ChangeLog.md index b56520362c20..bcee93488dab 100644 --- a/src/Synapse/Synapse/ChangeLog.md +++ b/src/Synapse/Synapse/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.11.0 * Removed principaltype in Synapse Role-based access control ## Version 0.10.0 diff --git a/src/Synapse/Synapse/Properties/AssemblyInfo.cs b/src/Synapse/Synapse/Properties/AssemblyInfo.cs index e574654a7c04..426fd9e974f7 100644 --- a/src/Synapse/Synapse/Properties/AssemblyInfo.cs +++ b/src/Synapse/Synapse/Properties/AssemblyInfo.cs @@ -35,5 +35,5 @@ // by using the '*' as shown below: -[assembly: AssemblyVersion("0.10.0")] -[assembly: AssemblyFileVersion("0.10.0")] +[assembly: AssemblyVersion("0.11.0")] +[assembly: AssemblyFileVersion("0.11.0")] diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index 1e821b3ae7a7..40ccda50d01f 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/8/2021 +# Generated on: 4/29/2021 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '5.8.0' +ModuleVersion = '5.9.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -54,23 +54,23 @@ DotNetFrameworkVersion = '4.7.2' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.Aks'; RequiredVersion = '2.0.2'; }, + @{ModuleName = 'Az.Aks'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.4'; }, @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '2.2.0'; }, @{ModuleName = 'Az.AppConfiguration'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.Automation'; RequiredVersion = '1.6.0'; }, + @{ModuleName = 'Az.Automation'; RequiredVersion = '1.7.0'; }, @{ModuleName = 'Az.Batch'; RequiredVersion = '3.1.0'; }, @{ModuleName = 'Az.Billing'; RequiredVersion = '2.0.0'; }, - @{ModuleName = 'Az.Cdn'; RequiredVersion = '1.6.0'; }, + @{ModuleName = 'Az.Cdn'; RequiredVersion = '1.7.0'; }, @{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.8.0'; }, - @{ModuleName = 'Az.Compute'; RequiredVersion = '4.11.0'; }, + @{ModuleName = 'Az.Compute'; RequiredVersion = '4.12.0'; }, @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.3'; }, @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '2.2.2'; }, @{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.Databricks'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.11.5'; }, + @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.12.0'; }, @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; }, @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.3.0'; }, @{ModuleName = 'Az.DataShare'; RequiredVersion = '1.0.0'; }, @@ -80,12 +80,12 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'; }, @{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; }, @{ModuleName = 'Az.EventGrid'; RequiredVersion = '1.3.0'; }, @{ModuleName = 'Az.EventHub'; RequiredVersion = '1.7.2'; }, - @{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.7.0'; }, + @{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.8.0'; }, @{ModuleName = 'Az.Functions'; RequiredVersion = '2.0.0'; }, @{ModuleName = 'Az.HDInsight'; RequiredVersion = '4.2.1'; }, @{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.3.1'; }, @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.7.3'; }, - @{ModuleName = 'Az.KeyVault'; RequiredVersion = '3.4.2'; }, + @{ModuleName = 'Az.KeyVault'; RequiredVersion = '3.4.3'; }, @{ModuleName = 'Az.Kusto'; RequiredVersion = '1.0.1'; }, @{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.5.0'; }, @{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; }, @@ -101,18 +101,18 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'; }, @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.4.1'; }, @{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '1.1.2'; }, @{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '3.5.0'; }, + @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '3.6.0'; }, @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.RedisEnterpriseCache'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.ResourceMover'; RequiredVersion = '0.2.0'; }, - @{ModuleName = 'Az.Resources'; RequiredVersion = '3.4.1'; }, + @{ModuleName = 'Az.ResourceMover'; RequiredVersion = '1.0.0'; }, + @{ModuleName = 'Az.Resources'; RequiredVersion = '3.5.0'; }, @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.5.0'; }, - @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.3.0'; }, + @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.4.0'; }, @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.Sql'; RequiredVersion = '2.17.1'; }, @{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.Storage'; RequiredVersion = '3.5.1'; }, + @{ModuleName = 'Az.Storage'; RequiredVersion = '3.6.0'; }, @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.Support'; RequiredVersion = '1.0.0'; }, @@ -173,73 +173,70 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '5.8.0 - April 2021 -Az.Accounts -* Fallback to first valid context if current default context key is ''Default'' which is invalid + ReleaseNotes = '5.9.0 - May 2021 +Az.Aks +* Added support ''AcrNameToAttach'' in ''Set-AzAksCluster''. [#14692] +* Added support ''AcrNameToDetach'' in ''Set-AzAksCluster''. [#14693] +* Added ''Set-AzAksClusterCredential'' to reset the ServicePrincipal of an existing AKS cluster. Az.Automation -* Added support for Customer Managed Key Encryption with System Assigned Identity -* Fixed issue that disables the schedule for update deployment if schedule was re-created with same name +* Added support for User Assigned Identities and PublicNetworkAccess flag -Az.Compute -* Fixed a bug when 1 data disk attached to VMSS for Remove-AzVmssDataDisk [#13368] -* Added new cmdlets to support TrustedLaunch related cmdlets: - - ''Set-AzVmSecurityProfile'' - - ''Set-AzVmUefi'' - - ''Set-AzVmssSecurityProfile'' - - ''Set-AzVmssUefi'' -* Edited default value for Size parameter in New-AzVM cmdlet from Standard_DS1_v2 to Standard_D2s_v3. +Az.Cdn +* Added cmdlets to support new AFD Premium / Standard SKUs -Az.ContainerRegistry -* Fixed bug in ''Get-AzContainerRegistryManifest'' showing incorrect image name +Az.Compute +* Updated the ''Set-AzVMDiskEncryptionExtension'' cmdlet to support ADE extension migration from two pass (version with AAD input parameters) to single pass (version without AAD input parameters). + - Added a switch parameter ''-Migrate'' to trigger migration workflow. + - Added a switch parameter ''-MigrationRecovery'' to trigger recovery workflow for VMs experiencing failures after migration from two pass ADE. -Az.HDInsight -* Supported getting default vmsize from backend if customer does not provide the related parameters: ''-WorkerNodeSize'', ''-HeadNodeSize'', ''-ZookeeperNodeSize'', ''-EdgeNodeSize'', ''-KafkaManagementNodeSize''. +Az.DataFactory +* Added User Assigned Identities to Data Factory. +* Updated ADF .Net SDK version to 4.18.0 -Az.HealthcareApis -* Added support for Acr LoginServers +Az.FrontDoor +* Allowed Enable-AzFrontDoorCustomDomainHttps''s SecretVersion parameter to be optional to support bring-your-own-certificate auto-rotation Az.KeyVault -* Fixed a bug for ''Get-AzKeyVaultSecret -AsPlainText'' if the secret is not found [#14645] +* Fixed a bug for ''Get-AzKeyVaultSecret -IncludeVersions'' when current version is disabled [#14740] +* Displayed error code and message when updating purged secret [#14800] + +Az.RecoveryServices +* Azure Site Recovery support for Multiple IP per NIC for Azure to Azure provider. +* Azure Site Recovery support for SqlServerLicenseType for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for Availability set for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for TargetVmSize for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for ResourceTagging for VMware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for Virtual Machine Scale Set for Azure to Azure provider. +* Added support for restoring unmanaged disks vm as managed disks. -Az.Migrate -* Nullref Bug fixed in get discovered server and initialize replication infrastructure commandlets. +Az.Resources +* Added parameter ''ObjectType'' for ''New-AzRoleAssignment'' -Az.Monitor -* Added cmdlet to get diagnostic setting categories for subscription - - ''Get-AzSubscriptionDiagnosticSettingCategory'' -* Supported subscription diagnostic setting operations with new parameter: SubscriptionId - - ''Get-AzDiagnosticSetting'' - - ''New-AzDiagnosticSetting'' - - ''Remove-AzDiagnosticSetting'' -* Supported ''AutoMitigate'' parameter in metric alert rule properties. The flag indicates whether the alert should be auto resolved or not. +Az.ResourceMover +* General availability of ''Az.ResourceMover'' module -Az.Resources -* Added upcoming breaking change warnings on below cmdlets, because the value of ''IdentifierUris'' parameter will need verified domain. - - ''New-AzADApplication'' - - ''Update-AzADApplication'' - - ''New-AzADServicePrincipal'' - - ''Update-AzADServicePrincipal'' -* Ignored Bicep warning message in error stream if exitcode equals zero. - -Az.Sql -* Added cmdlet output breaking change warnings to the following: - - ''New-AzSqlDatabase'' - - ''Get-AzSqlDatabase'' - - ''Set-AzSqlDatabase'' - - ''Remove-AzSqlDatabase'' - - ''New-AzSqlDatabaseSecondary'' - - ''Remove-AzSqlDatabaseSecondary'' - - ''Get-AzSqlDatabaseReplicationLink'' - - ''New-AzSqlDatabaseCopy'' - - ''Set-AzSqlDatabaseSecondary'' +Az.ServiceFabric +* Upgraded Managed Cluster commands to use Service Fabric Managed Cluster SDK version 1.0.0 which uses service fabric resource provider api-version 2021-05-01. +* ''New-AzServiceFabricManagedCluster'' add parameters UpgradeCadence and ZonalResiliency. +* ''New-AzServiceFabricManagedNodeType'' add parameters DiskType, VmUserAssignedIdentity, IsStateless and MultiplePlacementGroup. +* ''New-AzServiceFabricManagedClusterService'' and ''Set-AzServiceFabricManagedClusterService'' mark parameters for deprecation: InstanceCloseDelayDuration, DropSourceReplicaOnMove and ServiceDnsName. They are not supported. Az.Storage -* Fixed copy blob fail with source context as Oauth [#14662] - - ''Start-AzStorageBlobCopy'' - -Az.StreamAnalytics -* Added upcoming breaking change warning message to all cmdlets because of upcoming changes on parameters. +* Supported create/update storage account with KeyExpirationPeriod and SasExpirationPeriod + - ''New-AzStorageAccount'' + - ''Set-AzStorageAccount'' +* Supported create/update storage account with keyvault encryption and access keyvault with user assigned identity + - ''New-AzStorageAccount'' + - ''Set-AzStorageAccount'' +* Supported EdgeZone in create storage account + - ''New-AzStorageAccount'' +* Fixed an issue that delete immutable blob will prompt incorrect message. + - ''Remove-AzStorageAccount'' +* Allowed update Storage Account KeyVault properties by cleanup Keyversion to enable key auto rotation [#14769] + - ''Set-AzStorageAccount'' +* Added breaking change warning message for upcoming cmdlet breaking change + - ''Remove-AzRmStorageShare'' ' # Prerelease string of this module diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Aks.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Aks.dll.json index 0e10b9b155e8..e6f7cc4dd266 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Aks.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Aks.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -535,7 +535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -825,7 +825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -1595,7 +1595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -1713,42 +1713,6 @@ } ], "Parameters": [ - { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GenerateSshKey", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, { "Name": "NodeVmSetType", "AliasList": [], @@ -1911,24 +1875,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "AcrNameToAttach", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, 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": "EnableRbac", "AliasList": [], @@ -2019,6 +1965,42 @@ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GenerateSshKey", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ResourceGroupName", "AliasList": [], @@ -2293,6 +2275,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AcrNameToAttach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "AliasList": [], @@ -2367,54 +2367,6 @@ { "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.4.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": "GenerateSshKey", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "NodeVmSetType", @@ -2633,7 +2585,31 @@ }, { "ParameterMetadata": { - "Name": "AcrNameToAttach", + "Name": "EnableRbac", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "WindowsProfileAdminUserName", "AliasList": [], "Type": { "Namespace": "System", @@ -2657,12 +2633,12 @@ }, { "ParameterMetadata": { - "Name": "EnableRbac", + "Name": "WindowsProfileAdminUserPassword", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2681,7 +2657,7 @@ }, { "ParameterMetadata": { - "Name": "WindowsProfileAdminUserName", + "Name": "NetworkPlugin", "AliasList": [], "Type": { "Namespace": "System", @@ -2705,12 +2681,12 @@ }, { "ParameterMetadata": { - "Name": "WindowsProfileAdminUserPassword", + "Name": "LoadBalancerSku", "AliasList": [], "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2729,12 +2705,12 @@ }, { "ParameterMetadata": { - "Name": "NetworkPlugin", + "Name": "Force", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2753,12 +2729,12 @@ }, { "ParameterMetadata": { - "Name": "LoadBalancerSku", + "Name": "GenerateSshKey", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3067,6 +3043,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AcrNameToAttach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -3233,12 +3233,12 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "NodeVmSetType", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [], @@ -3257,12 +3257,12 @@ }, { "ParameterMetadata": { - "Name": "GenerateSshKey", + "Name": "NodeVnetSubnetID", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [], @@ -3281,12 +3281,12 @@ }, { "ParameterMetadata": { - "Name": "NodeVmSetType", + "Name": "NodeMaxPodCount", "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": [], @@ -3305,7 +3305,7 @@ }, { "ParameterMetadata": { - "Name": "NodeVnetSubnetID", + "Name": "NodeSetPriority", "AliasList": [], "Type": { "Namespace": "System", @@ -3329,12 +3329,12 @@ }, { "ParameterMetadata": { - "Name": "NodeMaxPodCount", + "Name": "NodePoolMode", "AliasList": [], "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": [], @@ -3353,7 +3353,7 @@ }, { "ParameterMetadata": { - "Name": "NodeSetPriority", + "Name": "NodeScaleSetEvictionPolicy", "AliasList": [], "Type": { "Namespace": "System", @@ -3377,14 +3377,14 @@ }, { "ParameterMetadata": { - "Name": "NodePoolMode", + "Name": "AddOnNameToBeEnabled", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -3392,7 +3392,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -3401,7 +3401,7 @@ }, { "ParameterMetadata": { - "Name": "NodeScaleSetEvictionPolicy", + "Name": "WorkspaceResourceId", "AliasList": [], "Type": { "Namespace": "System", @@ -3416,40 +3416,16 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AddOnNameToBeEnabled", - "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 + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "WorkspaceResourceId", + "Name": "SubnetName", "AliasList": [], "Type": { "Namespace": "System", @@ -3473,12 +3449,12 @@ }, { "ParameterMetadata": { - "Name": "SubnetName", + "Name": "EnableRbac", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3488,16 +3464,16 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AcrNameToAttach", + "Name": "WindowsProfileAdminUserName", "AliasList": [], "Type": { "Namespace": "System", @@ -3521,12 +3497,12 @@ }, { "ParameterMetadata": { - "Name": "EnableRbac", + "Name": "WindowsProfileAdminUserPassword", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3545,7 +3521,7 @@ }, { "ParameterMetadata": { - "Name": "WindowsProfileAdminUserName", + "Name": "NetworkPlugin", "AliasList": [], "Type": { "Namespace": "System", @@ -3569,12 +3545,12 @@ }, { "ParameterMetadata": { - "Name": "WindowsProfileAdminUserPassword", + "Name": "LoadBalancerSku", "AliasList": [], "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3593,12 +3569,12 @@ }, { "ParameterMetadata": { - "Name": "NetworkPlugin", + "Name": "Force", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3617,12 +3593,12 @@ }, { "ParameterMetadata": { - "Name": "LoadBalancerSku", + "Name": "GenerateSshKey", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3931,6 +3907,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AcrNameToAttach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -4039,7 +4039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NodeTaints": "System.Collections.Generic.IList`1[System.String]", "AvailabilityZones": "System.Collections.Generic.IList`1[System.String]", @@ -4165,7 +4165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -5055,7 +5055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -5970,7 +5970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -6242,7 +6242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -6937,7 +6937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NodeTaints": "System.Collections.Generic.IList`1[System.String]", "AvailabilityZones": "System.Collections.Generic.IList`1[System.String]", @@ -7082,7 +7082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -7298,7 +7298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NodeTaints": "System.Collections.Generic.IList`1[System.String]", "AvailabilityZones": "System.Collections.Generic.IList`1[System.String]", @@ -7845,7 +7845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -8213,7 +8213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -8337,7 +8337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -8472,6 +8472,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AcrNameToDetach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Id", "AliasList": [ @@ -8766,6 +8784,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AcrNameToAttach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "AliasList": [], @@ -8847,7 +8883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -8993,6 +9029,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AcrNameToDetach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Location", @@ -9285,6 +9345,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AcrNameToAttach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -9401,6 +9485,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AcrNameToDetach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Location", @@ -9695,12 +9803,12 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "AcrNameToAttach", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [], @@ -9719,12 +9827,12 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AsJob", "AliasList": [], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9743,13 +9851,37 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { + "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", @@ -9835,6 +9967,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AcrNameToDetach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Location", @@ -10127,6 +10283,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AcrNameToAttach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -10217,12 +10397,1129 @@ ] }, { - "Name": "defaultParameterSet", + "Name": "defaultParameterSet", + "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": "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": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServicePrincipalIdAndSecret", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NodePoolMode", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AcrNameToDetach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinuxProfileAdminUserName", + "AliasList": [ + "AdminUserName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "DnsNamePrefix", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KubernetesVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "NodeName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "NodeMinCount", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NodeMaxCount", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableNodeAutoScaling", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "NodeCount", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NodeOsDiskSize", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NodeVmSize", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "SshKeyValue", + "AliasList": [ + "SshKeyPath" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AcrNameToAttach", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Set-AzAks" + ] + }, + { + "VerbName": "Set", + "NounName": "AzAksClusterCredential", + "Name": "Set-AzAksClusterCredential", + "ClassName": "Microsoft.Azure.Commands.Aks.SetAzureRmAksCredential", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "GroupNameParameterSet", + "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.Aks.Models", + "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", + "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", + "ServicePrincipalProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile", + "AadProfile": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile", + "ApiServerAccessProfile": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile", + "Identity": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity", + "WindowsProfile": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile", + "AddonProfiles": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile]", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AgentPoolProfiles": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile]", + "EnablePodSecurityPolicy": "System.Nullable`1[System.Boolean]", + "EnableRBAC": "System.Nullable`1[System.Boolean]", + "MaxAgentPools": "System.Nullable`1[System.Int32]", + "Location": "System.String", + "NodeResourceGroup": "System.String", + "PrivateFQDN": "System.String", + "Fqdn": "System.String", + "DnsPrefix": "System.String", + "KubernetesVersion": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "location", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "id", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "type", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tags", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provisioningState", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "dnsPrefix", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "fqdn", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "kubernetesVersion", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "agentPoolProfiles", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "linuxProfile", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "servicePrincipalProfile", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Id", + "AliasList": [ + "ResourceId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServicePrincipalIdAndSecret", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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.4.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": "InputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Aks.Models", + "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", + "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", + "ServicePrincipalProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile", + "AadProfile": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile", + "ApiServerAccessProfile": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile", + "Identity": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity", + "WindowsProfile": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile", + "AddonProfiles": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile]", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AgentPoolProfiles": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile]", + "EnablePodSecurityPolicy": "System.Nullable`1[System.Boolean]", + "EnableRBAC": "System.Nullable`1[System.Boolean]", + "MaxAgentPools": "System.Nullable`1[System.Int32]", + "Location": "System.String", + "NodeResourceGroup": "System.String", + "PrivateFQDN": "System.String", + "Fqdn": "System.String", + "DnsPrefix": "System.String", + "KubernetesVersion": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "location", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "id", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "type", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tags", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provisioningState", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "dnsPrefix", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "fqdn", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "kubernetesVersion", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "agentPoolProfiles", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "linuxProfile", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "servicePrincipalProfile", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServicePrincipalIdAndSecret", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "IdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], + "Name": "Id", + "AliasList": [ + "ResourceId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -10241,31 +11538,7 @@ "Mandatory": true, "Position": 0, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 1, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -10286,19 +11559,19 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": 2, + "Mandatory": true, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NodePoolMode", + "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10317,12 +11590,12 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "AsJob", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10341,14 +11614,12 @@ }, { "ParameterMetadata": { - "Name": "LinuxProfileAdminUserName", - "AliasList": [ - "AdminUserName" - ], + "Name": "Force", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10367,16 +11638,31 @@ }, { "ParameterMetadata": { - "Name": "DnsNamePrefix", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], "Constructors": [] }, "ValidateSet": [], @@ -10388,10 +11674,15 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "GroupNameParameterSet", + "Parameters": [ { "ParameterMetadata": { - "Name": "KubernetesVersion", + "Name": "ResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", @@ -10406,16 +11697,16 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, + "Mandatory": true, + "Position": 0, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NodeName", + "Name": "Name", "AliasList": [], "Type": { "Namespace": "System", @@ -10430,21 +11721,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, + "Mandatory": true, + "Position": 1, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NodeMinCount", + "Name": "ServicePrincipalIdAndSecret", "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.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10456,19 +11747,19 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NodeMaxCount", + "Name": "PassThru", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10487,7 +11778,7 @@ }, { "ParameterMetadata": { - "Name": "EnableNodeAutoScaling", + "Name": "AsJob", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", @@ -10511,12 +11802,12 @@ }, { "ParameterMetadata": { - "Name": "NodeCount", + "Name": "Force", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10535,16 +11826,31 @@ }, { "ParameterMetadata": { - "Name": "NodeOsDiskSize", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], "Constructors": [] }, "ValidateSet": [], @@ -10556,41 +11862,20 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "NodeVmSize", + "Name": "PassThru", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, 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": "SshKeyValue", - "AliasList": [ - "SshKeyPath" - ], - "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10633,12 +11918,12 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Force", "AliasList": [], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10697,9 +11982,7 @@ ] } ], - "AliasList": [ - "Set-AzAks" - ] + "AliasList": [] }, { "VerbName": "Start", @@ -10715,7 +11998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks", "Name": "Microsoft.Azure.Commands.Aks.KubeTunnelJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.KubeTunnelJob, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.KubeTunnelJob, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HasMoreData": "System.Boolean", "ChildJobs": "System.Collections.Generic.IList`1[System.Management.Automation.Job]", @@ -10927,7 +12210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -11199,7 +12482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -12024,7 +13307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -12184,7 +13467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -12480,7 +13763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -12752,7 +14035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -12948,7 +14231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -13408,7 +14691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -13660,7 +14943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NodeTaints": "System.Collections.Generic.IList`1[System.String]", "AvailabilityZones": "System.Collections.Generic.IList`1[System.String]", @@ -13752,7 +15035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -14038,7 +15321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -14402,7 +15685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSOrchestratorVersionProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSOrchestratorVersionProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSOrchestratorVersionProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Upgrades": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile]", "DefaultProperty": "System.Nullable`1[System.Boolean]", @@ -14952,7 +16235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NodeTaints": "System.Collections.Generic.IList`1[System.String]", "AvailabilityZones": "System.Collections.Generic.IList`1[System.String]", @@ -15078,7 +16361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -15201,7 +16484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NodeTaints": "System.Collections.Generic.IList`1[System.String]", "AvailabilityZones": "System.Collections.Generic.IList`1[System.String]", @@ -15723,7 +17006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", "NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", @@ -16040,7 +17323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NodeTaints": "System.Collections.Generic.IList`1[System.String]", "AvailabilityZones": "System.Collections.Generic.IList`1[System.String]", @@ -16845,7 +18128,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ssh": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration", "AdminUsername": "System.String" @@ -16904,7 +18187,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicKeys": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey]" }, @@ -16958,7 +18241,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16970,7 +18253,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyData": "System.String" }, @@ -17034,7 +18317,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LoadBalancerProfile": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile", "NetworkPlugin": "System.String", @@ -17085,7 +18368,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedOutboundIPs": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs", "OutboundIPPrefixes": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes", @@ -17132,18 +18415,13 @@ "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Count": "System.Nullable`1[System.Int32]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -17200,20 +18478,10 @@ "Methods": [], "Constructors": [] }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIPPrefixes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSResourceReference]" }, @@ -17257,7 +18525,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSResourceReference]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSResourceReference]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSResourceReference, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSResourceReference, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17269,7 +18537,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSResourceReference": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSResourceReference", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSResourceReference, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSResourceReference, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -17313,7 +18581,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPs": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPs", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPs, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPs, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIPs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSResourceReference]" }, @@ -17357,7 +18625,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultSecretRef": "Microsoft.Azure.Commands.Aks.Models.PSKeyVaultSecretRef", "Secret": "System.String", @@ -17421,7 +18689,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSKeyVaultSecretRef": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSKeyVaultSecretRef", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKeyVaultSecretRef, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKeyVaultSecretRef, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VaultID": "System.String", "SecretName": "System.String", @@ -17485,7 +18753,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAppID": "System.String", "ServerAppID": "System.String", @@ -17532,7 +18800,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthorizedIPRanges": "System.Collections.Generic.IList`1[System.String]", "EnablePrivateCluster": "System.Nullable`1[System.Boolean]" @@ -17601,7 +18869,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType]", "TenantId": "System.String", @@ -17647,7 +18915,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17659,7 +18927,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17764,7 +19032,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdminUsername": "System.String", "AdminPassword": "System.String" @@ -17809,7 +19077,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17822,7 +19090,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "Config": "System.Collections.Generic.IDictionary`2[System.String,System.String]" @@ -17880,7 +19148,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17892,7 +19160,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ports": "System.Collections.Generic.IList`1[System.Nullable`1[System.Int32]]", "NodeTaints": "System.Collections.Generic.IList`1[System.String]", @@ -18087,6 +19355,16 @@ "Methods": [], "Constructors": [] }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", @@ -18376,7 +19654,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18388,7 +19666,7 @@ "Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile": { "Namespace": "Microsoft.Azure.Commands.Aks.Models", "Name": "Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSOrchestratorProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsPreview": "System.Nullable`1[System.Boolean]", "OrchestratorVersion": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Automation.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Automation.dll.json index a5b1d0fabc50..f888ffae9771 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Automation.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Automation.dll.json @@ -1432,13 +1432,14 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties", "Identity": "Microsoft.Azure.Management.Automation.Models.Identity", "Tags": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", + "PublicNetworkAccess": "System.Nullable`1[System.Boolean]", "SubscriptionId": "System.String", "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -1800,7 +1801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -2049,7 +2050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exportable": "System.Boolean", "ExpiryTime": "System.DateTimeOffset", @@ -2440,7 +2441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogVerbose": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -2837,7 +2838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Connection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FieldDefinitionValues": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -3361,7 +3362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", @@ -3750,7 +3751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -4624,7 +4625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobStream", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Time": "System.DateTimeOffset", "JobId": "System.Guid", @@ -4725,7 +4726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4954,7 +4955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5193,7 +5194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeen": "System.DateTimeOffset", @@ -5292,7 +5293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5651,7 +5652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5885,7 +5886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6117,7 +6118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6540,7 +6541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -7236,7 +7237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -8003,7 +8004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", "JobScheduleId": "System.Guid", @@ -8390,7 +8391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeen": "System.DateTimeOffset", @@ -9189,7 +9190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -9562,7 +9563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RunbookWorker": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]", "ResourceGroupName": "System.String", @@ -9953,7 +9954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Job", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -10844,7 +10845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobStream", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Time": "System.DateTimeOffset", "JobId": "System.Guid", @@ -10945,7 +10946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.StreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11169,7 +11170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.StreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11403,7 +11404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Hashtable", "Time": "System.DateTimeOffset", @@ -11747,7 +11748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Module", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsGlobal": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -12139,7 +12140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -12540,7 +12541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -12946,7 +12947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -13754,7 +13755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoSync": "System.Boolean", "PublishRunbook": "System.Boolean", @@ -14286,7 +14287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTime": "System.DateTimeOffset", "SourceControlSyncJobId": "System.Guid", @@ -14365,7 +14366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTime": "System.DateTimeOffset", "SourceControlSyncJobId": "System.Guid", @@ -14715,7 +14716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceControlSyncJobId": "System.Guid", "Time": "System.Nullable`1[System.DateTimeOffset]", @@ -14797,7 +14798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Hashtable", "SourceControlSyncJobId": "System.Guid", @@ -14925,7 +14926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15175,7 +15176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15409,7 +15410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Variable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encrypted": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -15799,7 +15800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Webhook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -16331,7 +16332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogVerbose": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -16850,7 +16851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", @@ -17277,7 +17278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -17950,13 +17951,14 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties", "Identity": "Microsoft.Azure.Management.Automation.Models.Identity", "Tags": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", + "PublicNetworkAccess": "System.Nullable`1[System.Boolean]", "SubscriptionId": "System.String", "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -18137,6 +18139,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AssignUserIdentity", + "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": "AutomationServicesEncryption", "AliasList": [], @@ -18227,6 +18247,42 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "UserIdentityEncryption", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisablePublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -18416,6 +18472,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AssignUserIdentity", + "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": "DisablePublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -18635,6 +18739,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AssignUserIdentity", + "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": "DisablePublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -18775,6 +18927,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UserIdentityEncryption", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -18926,6 +19102,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AssignUserIdentity", + "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": "DisablePublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -18984,7 +19208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exportable": "System.Boolean", "ExpiryTime": "System.DateTimeOffset", @@ -19563,7 +19787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Connection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FieldDefinitionValues": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -20075,7 +20299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", @@ -20544,7 +20768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -20841,7 +21065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Module", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsGlobal": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -21185,7 +21409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -21954,7 +22178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -22116,7 +22340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth", "GenericTypeArguments": [], @@ -22154,7 +22378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22972,7 +23196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth", "GenericTypeArguments": [], @@ -23282,7 +23506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24414,7 +24638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoSync": "System.Boolean", "PublishRunbook": "System.Boolean", @@ -25056,7 +25280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Variable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encrypted": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -25568,7 +25792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Webhook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -26122,7 +26346,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -27146,7 +27370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -27670,13 +27894,14 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties", "Identity": "Microsoft.Azure.Management.Automation.Models.Identity", "Tags": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", + "PublicNetworkAccess": "System.Nullable`1[System.Boolean]", "SubscriptionId": "System.String", "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -32455,13 +32680,14 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties", "Identity": "Microsoft.Azure.Management.Automation.Models.Identity", "Tags": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", + "PublicNetworkAccess": "System.Nullable`1[System.Boolean]", "SubscriptionId": "System.String", "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -32624,6 +32850,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AssignUserIdentity", + "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": "AutomationServicesEncryption", "AliasList": [], @@ -32714,6 +32958,42 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "UserIdentityEncryption", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisablePublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -32879,6 +33159,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AssignUserIdentity", + "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": "DisablePublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -33074,6 +33402,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AssignUserIdentity", + "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": "DisablePublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -33214,6 +33590,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UserIdentityEncryption", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -33341,6 +33741,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AssignUserIdentity", + "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": "DisablePublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -33399,7 +33847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exportable": "System.Boolean", "ExpiryTime": "System.DateTimeOffset", @@ -33984,7 +34432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Connection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FieldDefinitionValues": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -34454,7 +34902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", @@ -34923,7 +35371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeen": "System.DateTimeOffset", @@ -35446,7 +35894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Module", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsGlobal": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -35972,7 +36420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -36645,7 +37093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -37181,7 +37629,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Variable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encrypted": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -37809,7 +38257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Webhook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -38241,7 +38689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -38670,7 +39118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -38917,7 +39365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -39024,7 +39472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -39357,7 +39805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -39618,7 +40066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -40023,7 +40471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Job", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -40799,7 +41247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTime": "System.DateTimeOffset", "SourceControlSyncJobId": "System.Guid", @@ -41221,7 +41669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -41784,7 +42232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -42599,7 +43047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeen": "System.DateTimeOffset", @@ -43657,7 +44105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoSync": "System.Boolean", "PublishRunbook": "System.Boolean", @@ -44215,7 +44663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -44718,7 +45166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetComputerType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType", "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", @@ -44812,7 +45260,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", "Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus", @@ -44893,7 +45341,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45146,7 +45594,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45288,7 +45736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", "Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus", @@ -45375,7 +45823,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45517,7 +45965,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45758,7 +46206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", "Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus", @@ -45876,7 +46324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -45932,7 +46380,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45952,7 +46400,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -46205,7 +46653,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -46231,7 +46679,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -46373,7 +46821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -46435,7 +46883,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -46461,7 +46909,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -46603,7 +47051,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -46629,7 +47077,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -46870,7 +47318,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TagSettings": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings", "Locations": "System.String[]", @@ -46981,7 +47429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47233,7 +47681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47441,7 +47889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -47498,7 +47946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -47749,7 +48197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", "GenericTypeArguments": [], @@ -47767,7 +48215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", "GenericTypeArguments": [], @@ -47803,7 +48251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47906,7 +48354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses", "GenericTypeArguments": [], @@ -47960,7 +48408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses", "GenericTypeArguments": [], @@ -48089,7 +48537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -48352,7 +48800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", "GenericTypeArguments": [], @@ -48376,7 +48824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", "GenericTypeArguments": [], @@ -48424,7 +48872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48649,7 +49097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses", "GenericTypeArguments": [], @@ -48721,7 +49169,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -48984,7 +49432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", "GenericTypeArguments": [], @@ -49008,7 +49456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", "GenericTypeArguments": [], @@ -49056,7 +49504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -49281,7 +49729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses", "GenericTypeArguments": [], @@ -49353,7 +49801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -49616,7 +50064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", "GenericTypeArguments": [], @@ -49640,7 +50088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", "GenericTypeArguments": [], @@ -49688,7 +50136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -49948,7 +50396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -50237,7 +50685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -51444,6 +51892,18 @@ "Methods": [], "Constructors": [] }, + "System.Nullable`1[System.Boolean]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Boolean" + ], + "Methods": [], + "Constructors": [] + }, "System.Guid": { "Namespace": "System", "Name": "System.Guid", @@ -51469,7 +51929,7 @@ "Microsoft.Azure.Commands.Automation.Model.Job": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Job", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -51563,7 +52023,7 @@ "Microsoft.Azure.Commands.Automation.Model.JobSchedule": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -51644,7 +52104,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -51656,7 +52116,7 @@ "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeenDateTime": "System.DateTimeOffset", @@ -51713,7 +52173,7 @@ "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DayOfWeek": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek", "DaysOfMonth": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]" @@ -51758,7 +52218,7 @@ "Microsoft.Azure.Commands.Automation.Model.DayOfWeek": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Occurrence": "System.String", "Day": "System.String" @@ -51803,7 +52263,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -51815,7 +52275,7 @@ "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -51910,7 +52370,7 @@ "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -52005,7 +52465,7 @@ "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysOfWeek": "System.Collections.Generic.IList`1[System.String]" }, @@ -52217,18 +52677,6 @@ "Methods": [], "Constructors": [] }, - "System.Nullable`1[System.Boolean]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Boolean" - ], - "Methods": [], - "Constructors": [] - }, "System.DayOfWeek": { "Namespace": "System", "Name": "System.DayOfWeek", @@ -52252,7 +52700,7 @@ "Microsoft.Azure.Commands.Automation.Model.Schedule": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -52333,7 +52781,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Code": "System.String", "Message": "System.String" @@ -52378,7 +52826,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PreTask": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task", "PostTask": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task" @@ -52423,7 +52871,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "source": "System.String" @@ -52468,7 +52916,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Linux": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration", "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", @@ -52518,7 +52966,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "rebootSetting": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", "IncludedPackageClassifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]", @@ -52565,7 +53013,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -52660,7 +53108,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -52672,7 +53120,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -52767,7 +53215,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -52862,7 +53310,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureQueries": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]", "NonAzureQueries": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]" @@ -52907,7 +53355,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -52919,7 +53367,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TagSettings": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings", "Locations": "System.String[]", @@ -52965,7 +53413,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FilterOperator": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.List`1[System.String]]" @@ -53010,7 +53458,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -53130,7 +53578,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -53142,7 +53590,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FunctionAlias": "System.String", "WorkspaceResourceId": "System.String" @@ -53187,7 +53635,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "rebootSetting": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", "IncludedUpdateClassifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]", @@ -53234,7 +53682,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -53246,7 +53694,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -53363,7 +53811,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -53458,7 +53906,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -53553,7 +54001,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -53648,7 +54096,7 @@ "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTasks": { "Namespace": "Microsoft.Azure.Management.Automation.Models", "Name": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTasks", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PreTask": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties", "PostTask": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties" @@ -53707,7 +54155,7 @@ "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties": { "Namespace": "Microsoft.Azure.Management.Automation.Models", "Name": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "System.String", "Source": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll.json index d7f3bc86677a..a4b0e4f31967 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -249,7 +249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models", "Name": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CurrentValue": "System.Int32", "Limit": "System.Int32", @@ -341,7 +341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -532,7 +532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -693,7 +693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSsoUri", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSsoUri, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSsoUri, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SsoUriValue": "System.String" }, @@ -782,7 +782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -973,7 +973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -1134,7 +1134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSOptimizationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSOptimizationType, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSOptimizationType, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1226,7 +1226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -1417,7 +1417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -1578,7 +1578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -1675,7 +1675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1901,7 +1901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2164,7 +2164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -2439,7 +2439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -2696,7 +2696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -2757,7 +2757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -2856,7 +2856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -2973,7 +2973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -3132,7 +3132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -3545,7 +3545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -3700,7 +3700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -4011,7 +4011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -4774,7 +4774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -5070,7 +5070,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -5501,7 +5501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -5650,7 +5650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -5961,7 +5961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -6724,7 +6724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -6893,7 +6893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -7346,7 +7346,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -7575,7 +7575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -7940,7 +7940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -8232,7 +8232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -8659,7 +8659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -8804,7 +8804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -9033,7 +9033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -9398,7 +9398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", "ProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", @@ -9563,7 +9563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSValidateProbeOutput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSValidateProbeOutput, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSValidateProbeOutput, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsValid": "System.Nullable`1[System.Boolean]", "ErrorCode": "System.String", @@ -9750,7 +9750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -9879,7 +9879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -10162,7 +10162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -10303,7 +10303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSCheckNameAvailabilityOutput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSCheckNameAvailabilityOutput, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSCheckNameAvailabilityOutput, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NameAvailable": "System.Boolean", "Reason": "System.String", @@ -10490,7 +10490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models", "Name": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CurrentValue": "System.Int32", "Limit": "System.Int32", @@ -10600,7 +10600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -10897,7 +10897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -11052,7 +11052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchValue": "System.Collections.Generic.IList`1[System.String]", "Transfroms": "System.Collections.Generic.IList`1[System.String]", @@ -11452,7 +11452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Actions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction]", "Conditions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition]", @@ -11544,7 +11544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition", "GenericTypeArguments": [], @@ -11562,7 +11562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction", "GenericTypeArguments": [], @@ -11667,7 +11667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition", "GenericTypeArguments": [], @@ -11691,7 +11691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction", "GenericTypeArguments": [], @@ -11766,7 +11766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule]", "Description": "System.String" @@ -11838,7 +11838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule", "GenericTypeArguments": [], @@ -11919,7 +11919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule", "GenericTypeArguments": [], @@ -11994,7 +11994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13069,7 +13069,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -13198,7 +13198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -13390,7 +13390,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13522,7 +13522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter", "GenericTypeArguments": [], @@ -13540,7 +13540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule]", "Description": "System.String" @@ -14046,7 +14046,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -14220,7 +14220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter", "GenericTypeArguments": [], @@ -14244,7 +14244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule]", "Description": "System.String" @@ -14911,7 +14911,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -15085,7 +15085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter", "GenericTypeArguments": [], @@ -15109,7 +15109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule]", "Description": "System.String" @@ -15530,7 +15530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", "Sku": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", @@ -15770,7 +15770,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -15944,7 +15944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter[], Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter", "GenericTypeArguments": [], @@ -15968,7 +15968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule]", "Description": "System.String" @@ -16469,7 +16469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -16782,7 +16782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -17126,7 +17126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -17439,7 +17439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -17710,7 +17710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -17785,7 +17785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -17898,7 +17898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -18102,7 +18102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -18373,7 +18373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -18669,7 +18669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -18940,7 +18940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -19163,7 +19163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSValidateCustomDomainOutput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSValidateCustomDomainOutput, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSValidateCustomDomainOutput, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomDomainValidated": "System.Boolean", "Reason": "System.String", @@ -19272,7 +19272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -19543,7 +19543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -19841,7 +19841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -20154,7 +20154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -20425,7 +20425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.EdgeNodes", "Name": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSEdgeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSEdgeNode, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSEdgeNode, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpAddressGroups": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup]" }, @@ -20570,7 +20570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models", "Name": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.PSResourceUsage, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CurrentValue": "System.Int32", "Limit": "System.Int32", @@ -20807,7 +20807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -21091,7 +21091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -21394,7 +21394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -21696,7 +21696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -22091,7 +22091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -22375,7 +22375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -22678,7 +22678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -22980,7 +22980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -23284,7 +23284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -23420,7 +23420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -23741,7 +23741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -23896,7 +23896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -24050,7 +24050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -24419,7 +24419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeliveryPolicy": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", @@ -24689,7 +24689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -24973,7 +24973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", "CustomHttpsProvisioningState": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", @@ -25170,6 +25170,24313 @@ } ], "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzFrontDoorCdnSecurityPolicy", + "Name": "Get-AzFrontDoorCdnSecurityPolicy", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdSecurityPolicy.GetAzFrontDoorCdnSecurityPolicy", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Domains": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "WafPolicyId": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "SecurityPolicyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecurityPolicyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ByResourceIdParameterSet", + "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": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnSecurityPolicy", + "Name": "New-AzFrontDoorCdnSecurityPolicy", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdSecurityPolicy.NewAzFrontDoorCdnSecurityPolicy", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Domains": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "WafPolicyId": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SecurityPolicyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "WafPolicyId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "DomainId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecurityPolicyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "WafPolicyId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "DomainId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzFrontDoorCdnSecurityPolicy", + "Name": "Remove-AzFrontDoorCdnSecurityPolicy", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdSecurityPolicy.RemoveAzFrontDoorCdnSecurityPolicy", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "SecurityPolicy", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Domains": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "WafPolicyId": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SecurityPolicyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecurityPolicyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "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": 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.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SecurityPolicy", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Domains": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "WafPolicyId": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.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": "AzFrontDoorCdnSecurityPolicy", + "Name": "Set-AzFrontDoorCdnSecurityPolicy", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdSecurityPolicy.SetAzFrontDoorCdnSecurityPolicy", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Domains": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "WafPolicyId": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "DomainId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SecurityPolicy", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Domains": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "WafPolicyId": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SecurityPolicyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "WafPolicyId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DomainId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecurityPolicyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "WafPolicyId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SecurityPolicy", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Domains": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "WafPolicyId": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzFrontDoorCdnSecret", + "Name": "Get-AzFrontDoorCdnSecret", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdSecret.GetAzFrontDoorCdnSecret", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SubjectAlternativeNames": "System.Collections.Generic.List`1[System.String]", + "UseLatestVersion": "System.Nullable`1[System.Boolean]", + "CertificateAuthority": "System.String", + "SecretSource": "System.String", + "SecretVersion": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "SecretName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecretName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ByResourceIdParameterSet", + "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": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnSecret", + "Name": "New-AzFrontDoorCdnSecret", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdSecret.NewAzFrontDoorCdnSecret", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SubjectAlternativeNames": "System.Collections.Generic.List`1[System.String]", + "UseLatestVersion": "System.Nullable`1[System.Boolean]", + "CertificateAuthority": "System.String", + "SecretSource": "System.String", + "SecretVersion": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "CertificateAuthority", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SecretName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "SecretSource", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecretVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SubjectAlternativeName", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "UseLatestVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CertificateAuthority", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecretName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "SecretSource", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "SecretVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SubjectAlternativeName", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UseLatestVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzFrontDoorCdnSecret", + "Name": "Remove-AzFrontDoorCdnSecret", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdSecret.RemoveAzFrontDoorCdnSecret", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "Secret", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SubjectAlternativeNames": "System.Collections.Generic.List`1[System.String]", + "UseLatestVersion": "System.Nullable`1[System.Boolean]", + "CertificateAuthority": "System.String", + "SecretSource": "System.String", + "SecretVersion": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "SecretName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecretName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "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": 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.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Secret", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SubjectAlternativeNames": "System.Collections.Generic.List`1[System.String]", + "UseLatestVersion": "System.Nullable`1[System.Boolean]", + "CertificateAuthority": "System.String", + "SecretSource": "System.String", + "SecretVersion": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": 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.4.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.4.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": "AzFrontDoorCdnSecret", + "Name": "Set-AzFrontDoorCdnSecret", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdSecret.SetAzFrontDoorCdnSecret", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdSecret, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SubjectAlternativeNames": "System.Collections.Generic.List`1[System.String]", + "UseLatestVersion": "System.Nullable`1[System.Boolean]", + "CertificateAuthority": "System.String", + "SecretSource": "System.String", + "SecretVersion": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "CertificateAuthority", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SecretName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecretSource", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecretVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SubjectAlternativeName", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "UseLatestVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CertificateAuthority", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecretName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "SecretSource", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "SecretVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SubjectAlternativeName", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UseLatestVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzFrontDoorCdnRule", + "Name": "Get-AzFrontDoorCdnRule", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRule.GetAzFrontDoorCdnRule", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Actions": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction]", + "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition]", + "Order": "System.Int32", + "MatchProcessingBehavior": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "RuleSet", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": 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": "ByResourceIdParameterSet", + "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": 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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RuleSet", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnRule", + "Name": "New-AzFrontDoorCdnRule", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRule.NewAzFrontDoorCdnRule", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Actions": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction]", + "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition]", + "Order": "System.Int32", + "MatchProcessingBehavior": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "Action", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Condition", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Order", + "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": "MatchProcessingBehavior", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Action", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Condition", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Order", + "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": "MatchProcessingBehavior", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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 + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnRuleAction", + "Name": "New-AzFrontDoorCdnRuleAction", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRule.NewAzFrontDoorCdnRuleAction", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "AfdRuleCacheExpirationAction", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CacheBehavior", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CacheDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HeaderType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "HeaderAction", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HeaderName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HeaderValue", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "QueryStringBehavior", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "QueryParameter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RedirectType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "DestinationProtocol", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomPath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomHostname", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomQueryString", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomFragment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourcePattern", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Destination", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "PreservePath", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OriginGroupOverride", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "AfdRuleCacheExpirationAction", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CacheBehavior", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "CacheDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "AfdRuleHeaderTypeAction", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "HeaderType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "HeaderAction", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "HeaderName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "HeaderValue", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "AfdRuleCacheKeyQueryStringAction", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "QueryStringBehavior", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "QueryParameter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AfdRuleUrlRedirectAction", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RedirectType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "DestinationProtocol", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "CustomPath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "CustomHostname", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "CustomQueryString", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "CustomFragment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "AfdRuleUrlRewriteAction", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourcePattern", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Destination", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "PreservePath", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AfdRuleOriginGroupOverrideAction", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "OriginGroupOverride", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnRuleCondition", + "Name": "New-AzFrontDoorCdnRuleCondition", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRule.NewAzFrontDoorCdnRuleCondition", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MatchValue": "System.Collections.Generic.List`1[System.String]", + "Transforms": "System.Collections.Generic.List`1[System.String]", + "NegateCondition": "System.Nullable`1[System.Boolean]", + "MatchVariable": "System.String", + "Operator": "System.String", + "Selector": "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": "MatchVariable", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MatchValue", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Operator", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Selector", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Transform", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NegateCondition", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MatchVariable", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "MatchValue", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Operator", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Selector", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Transform", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NegateCondition", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AzFrontDoorCdnRule", + "Name": "Remove-AzFrontDoorCdnRule", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRule.RemoveAzFrontDoorCdnRule", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "Rule", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Actions": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction]", + "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition]", + "Order": "System.Int32", + "MatchProcessingBehavior": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "RuleName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "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": 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.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Rule", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Actions": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction]", + "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition]", + "Order": "System.Int32", + "MatchProcessingBehavior": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzFrontDoorCdnRuleSet", + "Name": "Get-AzFrontDoorCdnRuleSet", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRuleSet.GetAzFrontDoorCdnRuleSet", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ByResourceIdParameterSet", + "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": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnRuleSet", + "Name": "New-AzFrontDoorCdnRuleSet", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRuleSet.NewAzFrontDoorCdnRuleSet", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzFrontDoorCdnRuleSet", + "Name": "Remove-AzFrontDoorCdnRuleSet", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRuleSet.RemoveAzFrontDoorCdnRuleSet", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "RuleSet", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RuleSet", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleSetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "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": 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.4.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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzFrontDoorCdnRoute", + "Name": "Get-AzFrontDoorCdnRoute", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRoute.GetAzFrontDoorCdnRoute", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomDomainIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "RuleSetIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "SupportedProtocols": "System.Collections.Generic.List`1[System.String]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "OriginGroupId": "System.String", + "OriginPath": "System.String", + "QueryStringCachingBehavior": "System.String", + "ForwardingProtocol": "System.String", + "HttpsRedirect": "System.String", + "LinkToDefaultDomain": "System.String", + "EnabledState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "Endpoint", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RouteName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Endpoint", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RouteName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ByResourceIdParameterSet", + "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": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnRoute", + "Name": "New-AzFrontDoorCdnRoute", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRoute.NewAzFrontDoorCdnRoute", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomDomainIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "RuleSetIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "SupportedProtocols": "System.Collections.Generic.List`1[System.String]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "OriginGroupId": "System.String", + "OriginPath": "System.String", + "QueryStringCachingBehavior": "System.String", + "ForwardingProtocol": "System.String", + "HttpsRedirect": "System.String", + "LinkToDefaultDomain": "System.String", + "EnabledState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "CustomDomainId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RouteName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CustomDomainId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "OriginGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RouteName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzFrontDoorCdnRoute", + "Name": "Remove-AzFrontDoorCdnRoute", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRoute.RemoveAzFrontDoorCdnRoute", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "Route", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomDomainIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "RuleSetIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "SupportedProtocols": "System.Collections.Generic.List`1[System.String]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "OriginGroupId": "System.String", + "OriginPath": "System.String", + "QueryStringCachingBehavior": "System.String", + "ForwardingProtocol": "System.String", + "HttpsRedirect": "System.String", + "LinkToDefaultDomain": "System.String", + "EnabledState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "RouteName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RouteName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "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": 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.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Route", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomDomainIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "RuleSetIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "SupportedProtocols": "System.Collections.Generic.List`1[System.String]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "OriginGroupId": "System.String", + "OriginPath": "System.String", + "QueryStringCachingBehavior": "System.String", + "ForwardingProtocol": "System.String", + "HttpsRedirect": "System.String", + "LinkToDefaultDomain": "System.String", + "EnabledState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.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": "AzFrontDoorCdnRoute", + "Name": "Set-AzFrontDoorCdnRoute", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdRoute.SetAzFrontDoorCdnRoute", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomDomainIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "RuleSetIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "SupportedProtocols": "System.Collections.Generic.List`1[System.String]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "OriginGroupId": "System.String", + "OriginPath": "System.String", + "QueryStringCachingBehavior": "System.String", + "ForwardingProtocol": "System.String", + "HttpsRedirect": "System.String", + "LinkToDefaultDomain": "System.String", + "EnabledState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "CustomDomainId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HttpsRedirect", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ForwardingProtocol", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "QueryStringCachingBehavior", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginPath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Route", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomDomainIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "RuleSetIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "SupportedProtocols": "System.Collections.Generic.List`1[System.String]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "OriginGroupId": "System.String", + "OriginPath": "System.String", + "QueryStringCachingBehavior": "System.String", + "ForwardingProtocol": "System.String", + "HttpsRedirect": "System.String", + "LinkToDefaultDomain": "System.String", + "EnabledState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "RouteName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleSetId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SupportedProtocol", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CustomDomainId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpsRedirect", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ForwardingProtocol", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "OriginGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "QueryStringCachingBehavior", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "OriginPath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RouteName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "RuleSetId", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SupportedProtocol", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Route", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRoute, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomDomainIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "RuleSetIds": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "SupportedProtocols": "System.Collections.Generic.List`1[System.String]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "OriginGroupId": "System.String", + "OriginPath": "System.String", + "QueryStringCachingBehavior": "System.String", + "ForwardingProtocol": "System.String", + "HttpsRedirect": "System.String", + "LinkToDefaultDomain": "System.String", + "EnabledState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzFrontDoorCdnProfile", + "Name": "Get-AzFrontDoorCdnProfile", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdProfile.GetAzFrontDoorCdnProfile", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": "ByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnProfile", + "Name": "New-AzFrontDoorCdnProfile", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdProfile.NewAzFrontDoorCdnProfile", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": "Sku", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sku", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzFrontDoorCdnProfile", + "Name": "Remove-AzFrontDoorCdnProfile", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdProfile.RemoveAzFrontDoorCdnProfile", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": "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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": 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.4.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.4.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": "AzFrontDoorCdnProfile", + "Name": "Set-AzFrontDoorCdnProfile", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdProfile.SetAzFrontDoorCdnProfile", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzFrontDoorCdnOrigin", + "Name": "Get-AzFrontDoorCdnOrigin", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdOrigin.GetAzFrontDoorCdnOrigin", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "Priority": "System.Nullable`1[System.Int32]", + "Weight": "System.Nullable`1[System.Int32]", + "OriginGroupName": "System.String", + "HostName": "System.String", + "OriginHostHeader": "System.String", + "EnabledState": "System.String", + "PrivateLinkId": "System.String", + "PrivateLinkLocation": "System.String", + "PrivateLinkRequestMessage": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "OriginGroup", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "OriginGroup", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByResourceIdParameterSet", + "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": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnOrigin", + "Name": "New-AzFrontDoorCdnOrigin", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdOrigin.NewAzFrontDoorCdnOrigin", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "Priority": "System.Nullable`1[System.Int32]", + "Weight": "System.Nullable`1[System.Int32]", + "OriginGroupName": "System.String", + "HostName": "System.String", + "OriginHostHeader": "System.String", + "EnabledState": "System.String", + "PrivateLinkId": "System.String", + "PrivateLinkLocation": "System.String", + "PrivateLinkRequestMessage": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HttpPort", + "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": "HttpsPort", + "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginHostHeader", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Priority", + "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": "PrivateLinkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PrivateLinkLocation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PrivateLinkRequestMessage", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Weight", + "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "HttpPort", + "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": "HttpsPort", + "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "OriginHostHeader", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "Priority", + "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Weight", + "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "SharedPrivateLinkResource", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateLinkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "PrivateLinkLocation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "PrivateLinkRequestMessage", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "HttpPort", + "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": "HttpsPort", + "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "OriginHostHeader", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "Priority", + "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Weight", + "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzFrontDoorCdnOrigin", + "Name": "Remove-AzFrontDoorCdnOrigin", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdOrigin.RemoveAzFrontDoorCdnOrigin", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "Priority": "System.Nullable`1[System.Int32]", + "Weight": "System.Nullable`1[System.Int32]", + "OriginGroupName": "System.String", + "HostName": "System.String", + "OriginHostHeader": "System.String", + "EnabledState": "System.String", + "PrivateLinkId": "System.String", + "PrivateLinkLocation": "System.String", + "PrivateLinkRequestMessage": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "Origin", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "Priority": "System.Nullable`1[System.Int32]", + "Weight": "System.Nullable`1[System.Int32]", + "OriginGroupName": "System.String", + "HostName": "System.String", + "OriginHostHeader": "System.String", + "EnabledState": "System.String", + "PrivateLinkId": "System.String", + "PrivateLinkLocation": "System.String", + "PrivateLinkRequestMessage": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "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": 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.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Origin", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "Priority": "System.Nullable`1[System.Int32]", + "Weight": "System.Nullable`1[System.Int32]", + "OriginGroupName": "System.String", + "HostName": "System.String", + "OriginHostHeader": "System.String", + "EnabledState": "System.String", + "PrivateLinkId": "System.String", + "PrivateLinkLocation": "System.String", + "PrivateLinkRequestMessage": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.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": "AzFrontDoorCdnOrigin", + "Name": "Set-AzFrontDoorCdnOrigin", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdOrigin.SetAzFrontDoorCdnOrigin", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "Priority": "System.Nullable`1[System.Int32]", + "Weight": "System.Nullable`1[System.Int32]", + "OriginGroupName": "System.String", + "HostName": "System.String", + "OriginHostHeader": "System.String", + "EnabledState": "System.String", + "PrivateLinkId": "System.String", + "PrivateLinkLocation": "System.String", + "PrivateLinkRequestMessage": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HttpPort", + "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": "HttpsPort", + "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": "Origin", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "Priority": "System.Nullable`1[System.Int32]", + "Weight": "System.Nullable`1[System.Int32]", + "OriginGroupName": "System.String", + "HostName": "System.String", + "OriginHostHeader": "System.String", + "EnabledState": "System.String", + "PrivateLinkId": "System.String", + "PrivateLinkLocation": "System.String", + "PrivateLinkRequestMessage": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginHostHeader", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Priority", + "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": "PrivateLinkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PrivateLinkLocation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PrivateLinkRequestMessage", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Weight", + "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "HttpPort", + "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": "HttpsPort", + "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "OriginHostHeader", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "OriginName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "Priority", + "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": "PrivateLinkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "PrivateLinkLocation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "PrivateLinkRequestMessage", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Weight", + "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Origin", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "Priority": "System.Nullable`1[System.Int32]", + "Weight": "System.Nullable`1[System.Int32]", + "OriginGroupName": "System.String", + "HostName": "System.String", + "OriginHostHeader": "System.String", + "EnabledState": "System.String", + "PrivateLinkId": "System.String", + "PrivateLinkLocation": "System.String", + "PrivateLinkRequestMessage": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": 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": "AzFrontDoorCdnOriginGroup", + "Name": "Get-AzFrontDoorCdnOriginGroup", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdOriginGroup.GetAzFrontDoorCdnOriginGroup", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceIdParameterSet", + "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": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnOriginGroup", + "Name": "New-AzFrontDoorCdnOriginGroup", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdOriginGroup.NewAzFrontDoorCdnOriginGroup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "AdditionalLatencyInMillisecond", + "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": false + }, + { + "Name": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProbeIntervalInSeconds", + "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": false + }, + { + "Name": "ProbePath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProbeProtocol", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProbeRequestType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SampleSize", + "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": false + }, + { + "Name": "SuccessfulSamplesRequired", + "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": false + }, + { + "Name": "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes", + "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": 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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AdditionalLatencyInMillisecond", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProbeIntervalInSeconds", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProbePath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProbeProtocol", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProbeRequestType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SampleSize", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuccessfulSamplesRequired", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes", + "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": 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": [] + }, + { + "VerbName": "Remove", + "NounName": "AzFrontDoorCdnOriginGroup", + "Name": "Remove-AzFrontDoorCdnOriginGroup", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdOriginGroup.RemoveAzFrontDoorCdnOriginGroup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "OriginGroup", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "OriginGroup", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "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": 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.4.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.4.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": "AzFrontDoorCdnOriginGroup", + "Name": "Set-AzFrontDoorCdnOriginGroup", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdOriginGroup.SetAzFrontDoorCdnOriginGroup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "AdditionalLatencyInMillisecond", + "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": false + }, + { + "Name": "OriginGroup", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProbeIntervalInSeconds", + "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": false + }, + { + "Name": "ProbePath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProbeProtocol", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProbeRequestType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SampleSize", + "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": false + }, + { + "Name": "SuccessfulSamplesRequired", + "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": false + }, + { + "Name": "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes", + "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": 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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AdditionalLatencyInMillisecond", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OriginGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProbeIntervalInSeconds", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProbePath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProbeProtocol", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProbeRequestType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SampleSize", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuccessfulSamplesRequired", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes", + "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": 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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "OriginGroup", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdOriginGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SampleSize": "System.Nullable`1[System.Int32]", + "SuccessfulSamplesRequired": "System.Nullable`1[System.Int32]", + "AdditionalLatencyInMilliseconds": "System.Nullable`1[System.Int32]", + "ProbeIntervalInSeconds": "System.Nullable`1[System.Int32]", + "TrafficRestorationTimeToHealedOrNewEndpointsInMinutes": "System.Nullable`1[System.Int32]", + "ProbePath": "System.String", + "ProbeRequestType": "System.String", + "ProbeProtocol": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzFrontDoorCdnEndpoint", + "Name": "Get-AzFrontDoorCdnEndpoint", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdEndpoint.GetAzFrontDoorCdnEndpoint", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceIdParameterSet", + "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": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnEndpoint", + "Name": "New-AzFrontDoorCdnEndpoint", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdEndpoint.NewAzFrontDoorCdnEndpoint", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzFrontDoorCdnEndpoint", + "Name": "Remove-AzFrontDoorCdnEndpoint", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdEndpoint.RemoveAzFrontDoorCdnEndpoint", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "Endpoint", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Endpoint", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "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": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": 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.4.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.4.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": "AzFrontDoorCdnEndpoint", + "Name": "Set-AzFrontDoorCdnEndpoint", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdEndpoint.SetAzFrontDoorCdnEndpoint", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "Endpoint", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Endpoint", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "HostName": "System.String", + "EnabledState": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "EndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzFrontDoorCdnCustomDomain", + "Name": "Get-AzFrontDoorCdnCustomDomain", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdCustomDomain.GetAzFrontDoorCdnCustomDomain", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HostName": "System.String", + "CertificateType": "System.String", + "MinimumTlsVersion": "System.String", + "Secret": "System.String", + "ValidationToken": "System.String", + "ExpirationDate": "System.String", + "AzureDnsZone": "System.String", + "DomainValidationState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Profile", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdProfile, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Hashtable", + "ResourceState": "System.String", + "Sku": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByResourceIdParameterSet", + "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": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorCdnCustomDomain", + "Name": "New-AzFrontDoorCdnCustomDomain", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdCustomDomain.NewAzFrontDoorCdnCustomDomain", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HostName": "System.String", + "CertificateType": "System.String", + "MinimumTlsVersion": "System.String", + "Secret": "System.String", + "ValidationToken": "System.String", + "ExpirationDate": "System.String", + "AzureDnsZone": "System.String", + "DomainValidationState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "AzureDnsZoneId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MinimumTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SecretId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureDnsZoneId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AfdCustomDomainCustomerCertificate", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MinimumTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "SecretId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AzureDnsZoneId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzFrontDoorCdnCustomDomain", + "Name": "Remove-AzFrontDoorCdnCustomDomain", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdCustomDomain.RemoveAzFrontDoorCdnCustomDomain", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "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": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomDomain", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HostName": "System.String", + "CertificateType": "System.String", + "MinimumTlsVersion": "System.String", + "Secret": "System.String", + "ValidationToken": "System.String", + "ExpirationDate": "System.String", + "AzureDnsZone": "System.String", + "DomainValidationState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CustomDomain", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HostName": "System.String", + "CertificateType": "System.String", + "MinimumTlsVersion": "System.String", + "Secret": "System.String", + "ValidationToken": "System.String", + "ExpirationDate": "System.String", + "AzureDnsZone": "System.String", + "DomainValidationState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByResourceIdParameterSet", + "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": 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": "AzFrontDoorCdnCustomDomain", + "Name": "Set-AzFrontDoorCdnCustomDomain", + "ClassName": "Microsoft.Azure.Commands.Cdn.AfdCustomDomain.SetAzFrontDoorCdnCustomDomain", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HostName": "System.String", + "CertificateType": "System.String", + "MinimumTlsVersion": "System.String", + "Secret": "System.String", + "ValidationToken": "System.String", + "ExpirationDate": "System.String", + "AzureDnsZone": "System.String", + "DomainValidationState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "ProvisioningState": "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": "AzureDnsZoneId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MinimumTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecretId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureDnsZoneId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AfdCustomDomainCustomerCertificate", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MinimumTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "SecretId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AzureDnsZoneId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProfileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [] + } + ], + "AliasList": [] } ], "TypeDictionary": { @@ -25316,7 +49623,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSProfileResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25431,7 +49738,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSku, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName" }, @@ -25475,7 +49782,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Profile", "Name": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Profile.PSSkuName, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25570,7 +49877,7 @@ "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models", "Name": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.PSProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25866,7 +50173,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Origin", "Name": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Origin.PSOriginResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25973,7 +50280,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryPolicy, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule]", "Description": "System.String" @@ -26018,7 +50325,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26030,7 +50337,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRule, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Actions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction]", "Conditions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition]", @@ -26077,7 +50384,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26089,7 +50396,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26131,7 +50438,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26143,7 +50450,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeliveryRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchValue": "System.Collections.Generic.IList`1[System.String]", "Transfroms": "System.Collections.Generic.IList`1[System.String]", @@ -26204,7 +50511,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSEndpointResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26299,7 +50606,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSQueryStringCachingBehavior, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26394,7 +50701,7 @@ "Microsoft.Azure.Management.Cdn.Models.ResourceReference": { "Namespace": "Microsoft.Azure.Management.Cdn.Models", "Name": "Microsoft.Azure.Management.Cdn.Models.ResourceReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Cdn.Models.ResourceReference, Microsoft.Azure.Management.Cdn, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Cdn.Models.ResourceReference, Microsoft.Azure.Management.Cdn, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -26448,7 +50755,7 @@ "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeepCreatedOrigin]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeepCreatedOrigin]", - "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeepCreatedOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeepCreatedOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26460,7 +50767,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeepCreatedOrigin": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeepCreatedOrigin", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeepCreatedOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSDeepCreatedOrigin, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HttpPort": "System.Nullable`1[System.Int32]", "HttpsPort": "System.Nullable`1[System.Int32]", @@ -26507,7 +50814,7 @@ "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter]", - "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26519,7 +50826,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilter, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilterAction", "RelativePath": "System.String", @@ -26565,7 +50872,7 @@ "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilterAction": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.Endpoint", "Name": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilterAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilterAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.Endpoint.PSGeoFilterAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26670,7 +50977,7 @@ "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup", "Name": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.OriginGroup.PSOriginGroupResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26765,7 +51072,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Cdn.Models.ResourceReference, Microsoft.Azure.Management.Cdn, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Cdn.Models.ResourceReference, Microsoft.Azure.Management.Cdn, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26777,7 +51084,7 @@ "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26789,7 +51096,7 @@ "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup": { "Namespace": "Microsoft.Azure.Commands.Cdn.EdgeNodes", "Name": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSIpAddressGroup, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ipv4Addresses": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress]", "Ipv6Addresses": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress]", @@ -26835,7 +51142,7 @@ "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26847,7 +51154,7 @@ "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress": { "Namespace": "Microsoft.Azure.Commands.Cdn.EdgeNodes", "Name": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.EdgeNodes.PSCIDRIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrefixLength": "System.Int32", "BaseIpAddress": "System.String" @@ -26892,7 +51199,7 @@ "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomDomainResourceState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26987,7 +51294,7 @@ "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27082,7 +51389,7 @@ "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningSubstate": { "Namespace": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain", "Name": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningSubstate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.Models.CustomDomain.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27173,6 +51480,229 @@ } ], "Constructors": [] + }, + "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.ResourceReference]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Cdn.Models.ResourceReference, Microsoft.Azure.Management.Cdn, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Cdn.Models.ResourceReference" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.List`1[System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction, Microsoft.Azure.Management.Cdn, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction": { + "Namespace": "Microsoft.Azure.Management.Cdn.Models", + "Name": "Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction, Microsoft.Azure.Management.Cdn, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition, Microsoft.Azure.Management.Cdn, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition": { + "Namespace": "Microsoft.Azure.Management.Cdn.Models", + "Name": "Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition, Microsoft.Azure.Management.Cdn, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition": { + "Namespace": "Microsoft.Azure.Commands.Cdn.AfdModels", + "Name": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Cdn.AfdModels.PSAfdRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Cdn, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MatchValue": "System.Collections.Generic.List`1[System.String]", + "Transforms": "System.Collections.Generic.List`1[System.String]", + "NegateCondition": "System.Nullable`1[System.Boolean]", + "MatchVariable": "System.String", + "Operator": "System.String", + "Selector": "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": [] + } + ] } } } diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json index dda3479c7059..397e87f01bd4 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -263,7 +263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -814,7 +814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -1134,7 +1134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1205,7 +1205,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1386,7 +1386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1602,7 +1602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1799,7 +1799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Version": "System.String", @@ -1856,7 +1856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "SupportsMultipleExtensions": "System.Nullable`1[System.Boolean]", @@ -2222,7 +2222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "PublisherName": "System.String", @@ -2455,7 +2455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -2800,7 +2800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -3556,7 +3556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -3933,7 +3933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -4297,7 +4297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -5039,7 +5039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.AEM", "Name": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Result": "System.Boolean", "PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]", @@ -5430,7 +5430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -5972,7 +5972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -6313,7 +6313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -6677,7 +6677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -6791,7 +6791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -6893,7 +6893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -8142,7 +8142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -8646,7 +8646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -9756,7 +9756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -10224,7 +10224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -10871,7 +10871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -11206,7 +11206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -11528,7 +11528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -11605,7 +11605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -11740,7 +11740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -11899,7 +11899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -12583,7 +12583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -12728,7 +12728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -13081,7 +13081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -13338,7 +13338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -13660,7 +13660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -15186,7 +15186,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -15475,7 +15475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -16633,7 +16633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -16940,7 +16940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -17269,7 +17269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -17591,7 +17591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -17721,7 +17721,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -17777,7 +17777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -17840,7 +17840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -18053,7 +18053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -18115,7 +18115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -18184,7 +18184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -18323,7 +18323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -18665,7 +18665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -19029,7 +19029,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -19613,7 +19613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Version": "System.String", @@ -19670,7 +19670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutomaticOSUpgradeProperties": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties", "OSDiskImage": "Microsoft.Azure.Management.Compute.Models.OSDiskImage", @@ -20312,7 +20312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Offer": "System.String", @@ -20544,7 +20544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "PublisherName": "System.String", @@ -20733,7 +20733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Skus": "System.String", @@ -21505,7 +21505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "Microsoft.Azure.Management.Compute.Models.UsageName", "StatusCode": "System.Net.HttpStatusCode", @@ -21695,7 +21695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MemoryInMB": "System.Int32", "NumberOfCores": "System.Int32", @@ -22169,7 +22169,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -22223,7 +22223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -23085,7 +23085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -23909,7 +23909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -23963,7 +23963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -25415,7 +25415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -25469,7 +25469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -26009,7 +26009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -26063,7 +26063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -26873,7 +26873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -26960,7 +26960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27123,7 +27123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27314,7 +27314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27395,7 +27395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -27475,7 +27475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27889,7 +27889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -28308,7 +28308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29007,7 +29007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29094,7 +29094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29278,7 +29278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29465,7 +29465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29676,7 +29676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29763,7 +29763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29944,7 +29944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -30159,7 +30159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -30246,7 +30246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -30407,7 +30407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -30596,7 +30596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -31846,7 +31846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", "Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", @@ -33196,7 +33196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33283,7 +33283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33428,7 +33428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33595,7 +33595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33682,7 +33682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33828,7 +33828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33996,7 +33996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -34083,7 +34083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -34228,7 +34228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -34395,7 +34395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -34482,7 +34482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -34679,7 +34679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -34887,7 +34887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35047,7 +35047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35188,7 +35188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35275,7 +35275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35532,7 +35532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35816,7 +35816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36102,7 +36102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36367,7 +36367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36454,7 +36454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36849,7 +36849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -37225,7 +37225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -37649,7 +37649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -38025,7 +38025,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -38449,7 +38449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -38729,7 +38729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -38942,7 +38942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -39029,7 +39029,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -39472,7 +39472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -39908,7 +39908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -40440,7 +40440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -40876,7 +40876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -41408,7 +41408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -41829,7 +41829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -41916,7 +41916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -42113,7 +42113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -42350,7 +42350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -42437,7 +42437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -42665,7 +42665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -42915,7 +42915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -43002,7 +43002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -43217,7 +43217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -43449,7 +43449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -43609,7 +43609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -43750,7 +43750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -43837,7 +43837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -43998,7 +43998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -44187,7 +44187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -44268,7 +44268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -44858,7 +44858,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -44939,7 +44939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -45102,7 +45102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -45414,7 +45414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -45850,7 +45850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -45902,7 +45902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -46025,7 +46025,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -46799,7 +46799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -48644,7 +48644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -48698,7 +48698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -49334,7 +49334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -49428,7 +49428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -49777,7 +49777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -50203,7 +50203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -50579,7 +50579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -50931,7 +50931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -51288,7 +51288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalFilePath": "System.IO.FileInfo", "DestinationUri": "System.Uri" @@ -51948,7 +51948,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalFilePath": "System.IO.FileInfo", "Source": "System.Uri" @@ -52754,7 +52754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.DSC", "Name": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -52898,7 +52898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -53229,7 +53229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -53394,7 +53394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -53518,7 +53518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -53757,7 +53757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -54803,7 +54803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -55117,7 +55117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -56421,7 +56421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -56498,7 +56498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -56726,7 +56726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -57008,7 +57008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -57715,7 +57715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -58409,7 +58409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -60579,7 +60579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -60855,7 +60855,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -61401,7 +61401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption", "Name": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -61793,7 +61793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -62157,7 +62157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -62599,6 +62599,42 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "Migrate", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MigrationRecovery", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -62687,6 +62723,1426 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "KeyEncryptionAlgorithm", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "RSA-OAEP", + "RSA1_5" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 8, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VolumeType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "OS", + "Data", + "All" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 9, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SequenceVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 10, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 11, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 12, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Passphrase", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 13, + "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.4.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": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 14, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SkipVmBackup", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 15, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExtensionType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ExtensionPublisherName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "EncryptFormatAll", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AADClientSecretParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AadClientID", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AadClientSecret", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DiskEncryptionKeyVaultUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": 4, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DiskEncryptionKeyVaultId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": 5, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "KeyEncryptionKeyUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": 6, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "KeyEncryptionKeyVaultId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 7, + "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": "VMName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "KeyEncryptionAlgorithm", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "RSA-OAEP", + "RSA1_5" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 8, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VolumeType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "OS", + "Data", + "All" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 9, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SequenceVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 10, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 11, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 12, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Passphrase", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 13, + "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.4.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": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 14, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SkipVmBackup", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 15, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExtensionType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ExtensionPublisherName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "EncryptFormatAll", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AADClientCertParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AadClientID", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AadClientCertThumbprint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DiskEncryptionKeyVaultUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": 4, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DiskEncryptionKeyVaultId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": 5, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "KeyEncryptionKeyUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": 6, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "KeyEncryptionKeyVaultId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 7, + "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": "VMName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "KeyEncryptionAlgorithm", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "RSA-OAEP", + "RSA1_5" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 8, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VolumeType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "OS", + "Data", + "All" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 9, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SequenceVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 10, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 11, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 12, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Passphrase", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": 13, + "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.4.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": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 14, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SkipVmBackup", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 15, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExtensionType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ExtensionPublisherName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "EncryptFormatAll", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SinglePassParameterSet", + "Parameters": [ { "ParameterMetadata": { "Name": "DiskEncryptionKeyVaultUrl", @@ -62783,6 +64239,56 @@ "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": "VMName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "KeyEncryptionAlgorithm", @@ -63125,16 +64631,16 @@ ] }, { - "Name": "AADClientSecretParameterSet", + "Name": "MigrateADEVersionParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "AadClientID", + "Name": "Migrate", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -63147,31 +64653,7 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 2, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AadClientSecret", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, @@ -63225,102 +64707,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "DiskEncryptionKeyVaultUrl", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, 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": 4, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DiskEncryptionKeyVaultId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, 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": 5, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": 6, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyVaultId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.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": 7, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "KeyEncryptionAlgorithm", @@ -63663,16 +65049,16 @@ ] }, { - "Name": "AADClientCertParameterSet", + "Name": "MigrateADEVersionRecoveryParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "AadClientID", + "Name": "MigrationRecovery", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -63685,31 +65071,7 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 2, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AadClientCertThumbprint", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, @@ -63763,102 +65125,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "DiskEncryptionKeyVaultUrl", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, 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": 4, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DiskEncryptionKeyVaultId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, 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": 5, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": 6, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyVaultId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.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": 7, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "KeyEncryptionAlgorithm", @@ -64199,10 +65465,6 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "SinglePassParameterSet", - "Parameters": [] } ], "AliasList": [] @@ -64221,7 +65483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -64543,7 +65805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -65016,7 +66278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EncryptionSettings": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings", "EncryptionEnabled": "System.Boolean", @@ -65296,7 +66558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsVolumeEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus", "DataVolumesEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus", @@ -65618,7 +66880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", "Settings": "System.Object", @@ -66388,7 +67650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]", @@ -66756,7 +68018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]", @@ -67082,7 +68344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -67197,7 +68459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]", @@ -67525,7 +68787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]", @@ -67733,7 +68995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -68414,7 +69676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -68529,7 +69791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -68860,7 +70122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -69071,7 +70333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -69484,7 +70746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -70532,7 +71794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -70665,7 +71927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -71024,7 +72286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -71239,7 +72501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -71746,7 +73008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -72151,7 +73413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -72254,7 +73516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -72425,7 +73687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -72636,7 +73898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -72769,7 +74031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -73240,7 +74502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -73407,7 +74669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -73692,7 +74954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -73813,7 +75075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -74342,7 +75604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -74697,7 +75959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -76536,7 +77798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -77693,7 +78955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -77776,7 +79038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -77933,7 +79195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -78120,7 +79382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -78203,7 +79465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -78360,7 +79622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -78547,7 +79809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -78630,7 +79892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -78787,7 +80049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -78974,7 +80236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -79041,7 +80303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -79182,7 +80444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -79353,7 +80615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -79420,7 +80682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -79561,7 +80823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -79732,7 +80994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -79853,7 +81115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -80042,7 +81304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -80273,7 +81535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -80684,7 +81946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -80989,7 +82251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessSAS": "System.String" }, @@ -81414,7 +82676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -81759,7 +83021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -81880,7 +83142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -81946,7 +83208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -82135,7 +83397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -82325,7 +83587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -82753,7 +84015,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -84009,7 +85271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -84165,7 +85427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -84873,7 +86135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -85323,7 +86585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -85492,7 +86754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -86010,7 +87272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -86176,7 +87438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -86720,7 +87982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -89017,7 +90279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -89164,7 +90426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -90451,7 +91713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -91342,7 +92604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -91493,7 +92755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -91996,7 +93258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -92171,7 +93433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -92592,7 +93854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -93139,7 +94401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -93258,7 +94520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -93719,7 +94981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -94024,7 +95286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -94157,7 +95419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -94626,7 +95888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -94791,7 +96053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -95160,7 +96422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -95222,7 +96484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -95468,7 +96730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -95780,7 +97042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -96404,7 +97666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -96466,7 +97728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -96586,7 +97848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -96723,7 +97985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -96841,7 +98103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -96903,7 +98165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -97171,7 +98433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -97511,7 +98773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -97611,7 +98873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -97779,7 +99041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -97989,7 +99251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -98143,7 +99405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -98593,7 +99855,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -98759,7 +100021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -99170,7 +100432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -99496,7 +100758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput", @@ -100410,7 +101672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput", @@ -101112,7 +102374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -101525,7 +102787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -101658,7 +102920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -102129,7 +103391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -102296,7 +103558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -102757,7 +104019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity", "Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]", @@ -102958,7 +104220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -104255,7 +105517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -105009,7 +106271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -105082,7 +106344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -105229,7 +106491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -105406,7 +106668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -105479,7 +106741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -105626,7 +106888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -105803,7 +107065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -105876,7 +107138,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -106023,7 +107285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -106200,7 +107462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -106258,7 +107520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -106390,7 +107652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -106552,7 +107814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -106610,7 +107872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -106742,7 +108004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -106904,7 +108166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -107015,7 +108277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -107194,7 +108456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -107415,7 +108677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -107826,7 +109088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -108121,7 +109383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessSAS": "System.String" }, @@ -108546,7 +109808,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -108891,7 +110153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -109002,7 +110264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -109059,7 +110321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -109238,7 +110500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -109419,7 +110681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", @@ -109640,7 +110902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsType": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", "Parameters": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition]", @@ -109917,7 +111179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -110328,7 +111590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Policy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", @@ -110611,7 +111873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -110956,7 +112218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -111458,7 +112720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -112697,7 +113959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", @@ -112887,7 +114149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -113539,7 +114801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -113769,7 +115031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -113903,7 +115165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -113975,7 +115237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -114183,7 +115445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -114323,7 +115585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -114487,7 +115749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -114627,7 +115889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -114710,7 +115972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -114857,7 +116119,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -114934,7 +116196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -115127,7 +116389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -115362,7 +116624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -115439,7 +116701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -115736,7 +116998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -116111,7 +117373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -116188,7 +117450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -116487,7 +117749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -116864,7 +118126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -116941,7 +118203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -117204,7 +118466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -117533,7 +118795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -117610,7 +118872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -117761,7 +119023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -117942,7 +119204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -118019,7 +119281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -118170,7 +119432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -118351,7 +119613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -118428,7 +119690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -118581,7 +119843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -118764,7 +120026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -119160,7 +120422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension", "GenericTypeArguments": [], @@ -120227,7 +121489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension", "GenericTypeArguments": [], @@ -121473,7 +122735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension", "GenericTypeArguments": [], @@ -123588,7 +124850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -123665,7 +124927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -123818,7 +125080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -123968,7 +125230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -124120,7 +125382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -124253,7 +125515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -124330,7 +125592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -124481,7 +125743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -124631,7 +125893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -124781,7 +126043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -124914,7 +126176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -124991,7 +126253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -125142,7 +126404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -125292,7 +126554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -125442,7 +126704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -125575,7 +126837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -125652,7 +126914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -125805,7 +127067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -125988,7 +127250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -126065,7 +127327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -126402,7 +127664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -126829,7 +128091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -126906,7 +128168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -127093,7 +128355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -127322,7 +128584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -127399,7 +128661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -127617,7 +128879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -127859,7 +129121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -127936,7 +129198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -128345,7 +129607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -128868,7 +130130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -128945,7 +130207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -129096,7 +130358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -129277,7 +130539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -129392,7 +130654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -130281,7 +131543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -131534,7 +132796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -132237,7 +133499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -132690,7 +133952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WalkPerformed": "System.Nullable`1[System.Boolean]", "NextPlatformUpdateDomain": "System.Nullable`1[System.Int32]" @@ -132818,7 +134080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -133301,7 +134563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -133484,7 +134746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -134015,7 +135277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", "Capacity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity", @@ -134292,7 +135554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -135389,7 +136651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -135776,7 +137038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -135925,7 +137187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -136480,7 +137742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -136685,7 +137947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -137072,7 +138334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -137459,7 +138721,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -137574,7 +138836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -138775,7 +140037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -140275,7 +141537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -141686,7 +142948,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Patches": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties]", @@ -141802,7 +143064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -142153,7 +143415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -142389,7 +143651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -142734,7 +143996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -143121,7 +144383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", @@ -143295,7 +144557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -143932,7 +145194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -144169,7 +145431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -144247,7 +145509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -144592,7 +145854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -145003,7 +146265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -145081,7 +146343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -145215,7 +146477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -145373,7 +146635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -145468,7 +146730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -145737,7 +146999,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -146723,7 +147985,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -146735,7 +147997,7 @@ "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.AEM", "Name": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Result": "System.Boolean", "PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]", @@ -146813,7 +148075,7 @@ "Microsoft.Azure.Commands.Compute.Models.DisplayHintType": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151534,7 +152796,7 @@ "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", "BillingProfile": "Microsoft.Azure.Management.Compute.Models.BillingProfile", @@ -151588,7 +152850,7 @@ "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]" }, @@ -151632,7 +152894,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -151644,7 +152906,7 @@ "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisionAfterExtensions": "System.Collections.Generic.IList`1[System.String]", "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", @@ -153504,7 +154766,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -153516,7 +154778,7 @@ "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CredentialName": "System.String", "KeyVaultName": "System.String" @@ -154152,7 +155414,7 @@ "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption", "Name": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultURL": "System.String", "KeyEncryptionKeyURL": "System.String", @@ -154273,7 +155535,7 @@ "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154594,7 +155856,7 @@ "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Hosts": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName]" }, @@ -158874,7 +160136,7 @@ "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", "Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json index 92d390213504..d89bcaeb77aa 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutputDatasets": "System.Collections.Generic.IList`1[System.String]", "InputDatasets": "System.Collections.Generic.IList`1[System.String]", @@ -103,7 +103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -472,7 +472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1627,7 +1627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1938,7 +1938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2486,7 +2486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2747,7 +2747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2964,7 +2964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Availability": "Microsoft.Azure.Management.DataFactories.Common.Models.Availability", "Policy": "Microsoft.Azure.Management.DataFactories.Common.Models.Policy", @@ -3035,7 +3035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3196,7 +3196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3529,7 +3529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Availability": "Microsoft.Azure.Management.DataFactories.Common.Models.Availability", "Policy": "Microsoft.Azure.Management.DataFactories.Common.Models.Policy", @@ -3600,7 +3600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3797,7 +3797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4311,7 +4311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4568,7 +4568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4885,7 +4885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataSliceEnd": "System.DateTime", @@ -4964,7 +4964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5143,7 +5143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5548,7 +5548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Start": "System.DateTime", "End": "System.DateTime", @@ -5638,7 +5638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5933,7 +5933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -6294,7 +6294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SasUri": "System.String", "StorageAccountName": "System.String", @@ -6361,7 +6361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -6558,7 +6558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -7117,7 +7117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -7469,7 +7469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -7963,7 +7963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -8265,7 +8265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -8940,7 +8940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Key1": "System.String", "Key2": "System.String" @@ -9005,7 +9005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -9168,7 +9168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -9501,7 +9501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -9579,7 +9579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -9740,7 +9740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -10073,7 +10073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Key1": "System.String", "Key2": "System.String" @@ -10138,7 +10138,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -10322,7 +10322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -10736,7 +10736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -10814,7 +10814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -10993,7 +10993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -11417,7 +11417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -11596,7 +11596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12001,7 +12001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -12079,7 +12079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12258,7 +12258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12663,7 +12663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.HubBaseProperties", "HubName": "System.String", @@ -12748,7 +12748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12959,7 +12959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13224,7 +13224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.HubBaseProperties", "HubName": "System.String", @@ -13345,7 +13345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13604,7 +13604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -14022,7 +14022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -14259,7 +14259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -14576,7 +14576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties", "LinkedServiceName": "System.String", @@ -14643,7 +14643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -14804,7 +14804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15137,7 +15137,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties", "LinkedServiceName": "System.String", @@ -15204,7 +15204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15401,7 +15401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15915,7 +15915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16172,7 +16172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16489,7 +16489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.PipelineProperties", "PipelineName": "System.String", @@ -16574,7 +16574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16785,7 +16785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17050,7 +17050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.PipelineProperties", "PipelineName": "System.String", @@ -17135,7 +17135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17430,7 +17430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17848,7 +17848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18085,7 +18085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18441,7 +18441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18654,7 +18654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18962,7 +18962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19343,7 +19343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19843,7 +19843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20056,7 +20056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json index aa80552f41b7..05a8e2571fb5 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -372,7 +372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -639,7 +639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -954,7 +954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -1082,13 +1082,52 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "InputObject", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -1216,7 +1255,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -1488,6 +1527,57 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -1519,7 +1609,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -1826,6 +1916,57 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -1857,7 +1998,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -2140,6 +2281,57 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -2171,7 +2363,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -2333,6 +2525,57 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -2364,7 +2607,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -2670,6 +2913,57 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -2701,7 +2995,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -3031,6 +3325,203 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "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.4.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": "GlobalParameterDefinition", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" + ], + "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": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -3062,7 +3553,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -3133,7 +3624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -3254,6 +3745,57 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -3285,7 +3827,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -3356,7 +3898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -3645,6 +4187,57 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -3676,7 +4269,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -3747,7 +4340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -4014,12 +4607,12 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "IdentityType", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [], @@ -4038,17 +4631,17 @@ }, { "ParameterMetadata": { - "Name": "GlobalParameterDefinition", + "Name": "UserAssignedIdentity", "AliasList": [], "Type": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ "System.String", - "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" + "System.Object" ], "Methods": [], "Constructors": [] @@ -4063,50 +4656,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { "Name": "Force", @@ -4138,7 +4687,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -4218,7 +4767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -4331,7 +4880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -4598,7 +5147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -5021,7 +5570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -5386,7 +5935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -5751,7 +6300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CoreCount": "System.Nullable`1[System.Int32]", "TimeToLiveInMinutes": "System.Nullable`1[System.Int32]", @@ -5839,7 +6388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -6056,7 +6605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -6323,7 +6872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Data": "System.String", "Status": "System.String" @@ -6535,7 +7084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -7096,7 +7645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -7559,7 +8108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SessionId": "System.String", "Status": "System.String" @@ -7679,7 +8228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -7996,7 +8545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -8443,7 +8992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -8780,7 +9329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -9191,7 +9740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", "Name": "System.String", @@ -9307,7 +9856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -9600,7 +10149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -9897,7 +10446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", "Name": "System.String", @@ -10269,7 +10818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", "Name": "System.String", @@ -10659,7 +11208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", "Name": "System.String", @@ -11251,7 +11800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -11366,7 +11915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -11659,7 +12208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -11941,7 +12490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -12270,7 +12819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -12587,7 +13136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -13178,7 +13727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -13245,7 +13794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressCustomSetup": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]", "DataFlowTimeToLive": "System.Nullable`1[System.Int32]", @@ -13334,7 +13883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -13401,7 +13950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthorizationType": "System.String", "Name": "System.String", @@ -13567,7 +14116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -13980,7 +14529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -14131,7 +14680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthKey1": "System.String", "AuthKey2": "System.String" @@ -14270,7 +14819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -14567,7 +15116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -14738,7 +15287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]", "IntegrationRuntimeName": "System.String", @@ -14888,7 +15437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -15185,7 +15734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -15356,7 +15905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", "ResourceGroupName": "System.String", @@ -15432,7 +15981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "IsActiveDispatcher": "System.Nullable`1[System.Boolean]", @@ -15641,7 +16190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -16124,7 +16673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -16394,7 +16943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -16691,7 +17240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -16862,7 +17411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthKey1": "System.String", "AuthKey2": "System.String" @@ -17040,7 +17589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -17534,7 +18083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -17843,7 +18392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -18328,7 +18877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -18632,7 +19181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -19115,7 +19664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -19290,7 +19839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -19417,7 +19966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -21779,7 +22328,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -22494,7 +23043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -22839,7 +23388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastOperation": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult", "ExpressCustomSetup": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]", @@ -23034,7 +23583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -23447,7 +23996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -23711,7 +24260,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -24124,7 +24673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -24386,7 +24935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -24797,7 +25346,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -24948,7 +25497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]", @@ -25161,7 +25710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -25661,7 +26210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -25841,7 +26390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "IsActiveDispatcher": "System.Nullable`1[System.Boolean]", @@ -26050,7 +26599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -26533,7 +27082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -26708,7 +27257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -26822,7 +27371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -27115,7 +27664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -27433,7 +27982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -27798,7 +28347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -28060,7 +28609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -28388,7 +28937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -28704,7 +29253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -29294,7 +29843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -29409,7 +29958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -29702,7 +30251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -29984,7 +30533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -30313,7 +30862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -30630,7 +31179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -31221,7 +31770,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ActivityRunStart": "System.Nullable`1[System.DateTime]", @@ -31397,7 +31946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -31666,7 +32215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -32053,7 +32602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -32137,7 +32686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -32358,7 +32907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -32506,7 +33055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -33033,7 +33582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -33170,7 +33719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -33393,7 +33942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -33734,7 +34283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -33811,7 +34360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -34088,7 +34637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -34334,7 +34883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -35103,7 +35652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -35180,7 +35729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -35314,7 +35863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -35463,7 +36012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -35829,7 +36378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -36075,7 +36624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -36194,7 +36743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -36343,7 +36892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -36664,7 +37213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -36906,7 +37455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -37040,7 +37589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -37189,7 +37738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -37555,7 +38104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -37778,7 +38327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerName": "System.String", "Status": "System.String" @@ -37862,7 +38411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -38149,7 +38698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -38394,7 +38943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -38509,7 +39058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -38802,7 +39351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", @@ -39045,7 +39594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerName": "System.String", "Status": "System.String" @@ -39129,7 +39678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -39416,7 +39965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -39700,7 +40249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -40029,7 +40578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -40385,7 +40934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -40756,7 +41305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -41145,7 +41694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -41736,7 +42285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -41833,7 +42382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -42162,7 +42711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -42479,7 +43028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -42576,7 +43125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -42905,7 +43454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -43353,8 +43902,9 @@ "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "PrincipalId": "System.Nullable`1[System.Guid]", "TenantId": "System.Nullable`1[System.Guid]", "Type": "System.String" @@ -43362,6 +43912,11 @@ "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -43389,6 +43944,24 @@ } ], "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "principalId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tenantId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "userAssignedIdentities", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, { "Name": "", "ReturnType": null, @@ -43398,6 +43971,10 @@ "Name": "", "ReturnType": null, "Parameters": [ + { + "Name": "type", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "principalId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -43405,11 +43982,38 @@ { "Name": "tenantId", "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "userAssignedIdentities", + "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, + "System.Collections.Generic.IDictionary`2[System.String,System.Object]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.Object" + ], + "Methods": [], + "Constructors": [] + }, + "System.Object": { + "Namespace": "System", + "Name": "System.Object", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, "System.Nullable`1[System.Guid]": { "Namespace": "System", "Name": "System.Nullable`1[System.Guid]", @@ -43432,6 +44036,16 @@ "Methods": [], "Constructors": [] }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, "System.Type": { "Namespace": "System", "Name": "System.Type", @@ -43445,7 +44059,7 @@ "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountName": "System.String", "RepositoryName": "System.String", @@ -43521,20 +44135,10 @@ } ] }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -43547,7 +44151,7 @@ "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Object", "Type": "System.String" @@ -43608,16 +44212,6 @@ } ] }, - "System.Object": { - "Namespace": "System", - "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, "System.Collections.Generic.IDictionary`2[System.String,System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -43814,7 +44408,7 @@ "Microsoft.Azure.Management.DataFactory.Models.DataFlow": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DataFlow, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DataFlow, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder", "Annotations": "System.Collections.Generic.IList`1[System.Object]", @@ -43878,7 +44472,7 @@ "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -43944,7 +44538,7 @@ "Microsoft.Azure.Management.DataFactory.Models.Dataset": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Dataset", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Dataset, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Dataset, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder", "LinkedServiceName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference", @@ -44038,7 +44632,7 @@ "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -44092,7 +44686,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ReferenceName": "System.String", @@ -44154,23 +44748,10 @@ } ] }, - "System.Collections.Generic.IDictionary`2[System.String,System.Object]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.String", - "System.Object" - ], - "Methods": [], - "Constructors": [] - }, "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44183,7 +44764,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultValue": "System.Object", "Type": "System.String" @@ -44247,7 +44828,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44259,7 +44840,7 @@ "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -44311,7 +44892,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44323,7 +44904,7 @@ "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "SentBytes": "System.Nullable`1[System.Double]", @@ -44429,7 +45010,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44441,7 +45022,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Parameters": "System.Collections.Generic.IList`1[System.String]", @@ -44549,7 +45130,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Parameters": "System.Collections.Generic.IList`1[System.String]", @@ -44633,7 +45214,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44645,7 +45226,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", @@ -44714,7 +45295,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44726,7 +45307,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "Name": "System.String", @@ -44800,7 +45381,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44812,7 +45393,7 @@ "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -44978,7 +45559,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedService": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedService, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedService, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectVia": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", @@ -45057,7 +45638,7 @@ "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ReferenceName": "System.String", @@ -45122,7 +45703,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45134,7 +45715,7 @@ "Microsoft.Azure.Management.DataFactory.Models.Activity": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Activity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "DependsOn": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]", @@ -45213,7 +45794,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45225,7 +45806,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "DependencyConditions": "System.Collections.Generic.IList`1[System.String]", @@ -45294,7 +45875,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.UserProperty]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.UserProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45306,7 +45887,7 @@ "Microsoft.Azure.Management.DataFactory.Models.UserProperty": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.UserProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Object", "Name": "System.String" @@ -45370,7 +45951,7 @@ "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Id": "System.String", @@ -45434,7 +46015,7 @@ "Microsoft.Azure.Management.DataFactory.Models.Trigger": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Trigger", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Trigger, Microsoft.Azure.Management.DataFactory, Version=4.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Trigger, Microsoft.Azure.Management.DataFactory, Version=4.18.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Annotations": "System.Collections.Generic.IList`1[System.Object]", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll.json index e3ea8cfddb6d..acaa617471a5 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -156,7 +156,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -448,7 +448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -618,7 +618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -760,7 +760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -1212,7 +1212,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -1468,7 +1468,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -1548,7 +1548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -1691,7 +1691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -1826,7 +1826,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -1981,7 +1981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -2225,7 +2225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -2349,7 +2349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -2615,7 +2615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -2853,7 +2853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", "Tags": "System.Collections.Hashtable", @@ -3126,7 +3126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleSetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleSetDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleSetDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition]", "ProvisioningState": "System.String", @@ -3272,7 +3272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", @@ -3512,7 +3512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -3618,7 +3618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -3636,7 +3636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -3654,7 +3654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -3672,7 +3672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -3690,7 +3690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -3726,7 +3726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3847,7 +3847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "SendRecvTimeoutInSeconds": "System.Nullable`1[System.Int32]", @@ -3990,7 +3990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -4014,7 +4014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -4038,7 +4038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -4062,7 +4062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -4086,7 +4086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -4134,7 +4134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4359,7 +4359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -4383,7 +4383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -4407,7 +4407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -4431,7 +4431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -4455,7 +4455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -4503,7 +4503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4656,7 +4656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "SendRecvTimeoutInSeconds": "System.Nullable`1[System.Int32]", @@ -4766,7 +4766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -4790,7 +4790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -4814,7 +4814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -4838,7 +4838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -4862,7 +4862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -4910,7 +4910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5070,7 +5070,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PrivateEndpointStatus": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus]", @@ -5224,7 +5224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5576,7 +5576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5856,7 +5856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnabledState": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", @@ -5970,7 +5970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend", "GenericTypeArguments": [], @@ -6135,7 +6135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend", "GenericTypeArguments": [], @@ -6258,7 +6258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "SendRecvTimeoutInSeconds": "System.Nullable`1[System.Int32]", @@ -6315,7 +6315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6475,7 +6475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6659,7 +6659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -6765,7 +6765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7117,7 +7117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7493,7 +7493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HeaderActionType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType", "HeaderName": "System.String", @@ -7566,7 +7566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7750,7 +7750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7934,7 +7934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "Protocol": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", @@ -8031,7 +8031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8170,7 +8170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8360,7 +8360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8517,7 +8517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8677,7 +8677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SampleSize": "System.Nullable`1[System.Int32]", "AdditionalLatencyMilliseconds": "System.Nullable`1[System.Int32]", @@ -8994,7 +8994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RouteConfiguration": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", "HealthProbeSettings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]", @@ -9147,7 +9147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", "GenericTypeArguments": [], @@ -9255,7 +9255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9466,7 +9466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9722,7 +9722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", "GenericTypeArguments": [], @@ -9770,7 +9770,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10067,7 +10067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10272,7 +10272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", "GenericTypeArguments": [], @@ -10320,7 +10320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10737,7 +10737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", "GenericTypeArguments": [], @@ -10785,7 +10785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10969,7 +10969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", "Tags": "System.Collections.Hashtable", @@ -11080,7 +11080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", "GenericTypeArguments": [], @@ -11209,7 +11209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", "GenericTypeArguments": [], @@ -11284,7 +11284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RouteConfigurationOverride": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", "ResponseHeaderActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", @@ -11339,7 +11339,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11359,7 +11359,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11505,7 +11505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11755,7 +11755,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11781,7 +11781,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -12019,7 +12019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12128,7 +12128,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -12154,7 +12154,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -12368,7 +12368,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -12394,7 +12394,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -12471,7 +12471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineMatchVariable": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable", "RulesEngineOperator": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator", @@ -12529,7 +12529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12668,7 +12668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12789,7 +12789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform", "GenericTypeArguments": [], @@ -12846,7 +12846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13003,7 +13003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13136,7 +13136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform", "GenericTypeArguments": [], @@ -13211,7 +13211,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchProcessingBehavior": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior", "Action": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction", @@ -13304,7 +13304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RouteConfigurationOverride": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", "ResponseHeaderActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", @@ -13358,7 +13358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13461,7 +13461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition", "GenericTypeArguments": [], @@ -13566,7 +13566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RouteConfigurationOverride": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", "ResponseHeaderActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", @@ -13626,7 +13626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13735,7 +13735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition", "GenericTypeArguments": [], @@ -13810,7 +13810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition]", "Priority": "System.Int32", @@ -13906,7 +13906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", "GenericTypeArguments": [], @@ -14103,7 +14103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", "GenericTypeArguments": [], @@ -14300,7 +14300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -14571,7 +14571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride]", "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion]", @@ -14663,7 +14663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", "GenericTypeArguments": [], @@ -14681,7 +14681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion", "GenericTypeArguments": [], @@ -14786,7 +14786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", "GenericTypeArguments": [], @@ -14810,7 +14810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion", "GenericTypeArguments": [], @@ -14885,7 +14885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion]", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", @@ -14995,7 +14995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion", "GenericTypeArguments": [], @@ -15124,7 +15124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion", "GenericTypeArguments": [], @@ -15199,7 +15199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchValue": "System.Collections.Generic.List`1[System.String]", "Transform": "System.Collections.Generic.List`1[System.String]", @@ -15599,7 +15599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", @@ -15701,7 +15701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15822,7 +15822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -15840,7 +15840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -16017,7 +16017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16150,7 +16150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -16174,7 +16174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -16345,7 +16345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRuleOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride]", "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion]", @@ -16418,7 +16418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride", "GenericTypeArguments": [], @@ -16436,7 +16436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion", "GenericTypeArguments": [], @@ -16517,7 +16517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride", "GenericTypeArguments": [], @@ -16541,7 +16541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion", "GenericTypeArguments": [], @@ -16671,7 +16671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -16931,7 +16931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -17537,7 +17537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", "Tags": "System.Collections.Hashtable", @@ -17722,7 +17722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", "Tags": "System.Collections.Hashtable", @@ -18214,7 +18214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", @@ -18470,7 +18470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", @@ -18776,7 +18776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -18882,7 +18882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -18969,7 +18969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -18987,7 +18987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -19005,7 +19005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -19023,7 +19023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -19041,7 +19041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -19077,7 +19077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19198,7 +19198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "SendRecvTimeoutInSeconds": "System.Nullable`1[System.Int32]", @@ -19341,7 +19341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -19365,7 +19365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -19389,7 +19389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -19413,7 +19413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -19437,7 +19437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -19485,7 +19485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19710,7 +19710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -19734,7 +19734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -19758,7 +19758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -19782,7 +19782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -19806,7 +19806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -19854,7 +19854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20055,7 +20055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "SendRecvTimeoutInSeconds": "System.Nullable`1[System.Int32]", @@ -20117,7 +20117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -20141,7 +20141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -20165,7 +20165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -20189,7 +20189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -20213,7 +20213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -20261,7 +20261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20414,7 +20414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -20489,7 +20489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -20513,7 +20513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -20537,7 +20537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -20561,7 +20561,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -20585,7 +20585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -20633,7 +20633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20786,7 +20786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -20885,7 +20885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -20909,7 +20909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -20933,7 +20933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -20957,7 +20957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -20981,7 +20981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -21029,7 +21029,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21182,7 +21182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendPoolsSetting": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", @@ -21257,7 +21257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "SendRecvTimeoutInSeconds": "System.Nullable`1[System.Int32]", @@ -21319,7 +21319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -21343,7 +21343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -21367,7 +21367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -21391,7 +21391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -21415,7 +21415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -21463,7 +21463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21640,7 +21640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -21664,7 +21664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -21688,7 +21688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -21712,7 +21712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -21736,7 +21736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -21784,7 +21784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21985,7 +21985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -22009,7 +22009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -22033,7 +22033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -22057,7 +22057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -22081,7 +22081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -22129,7 +22129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22306,7 +22306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "SendRecvTimeoutInSeconds": "System.Nullable`1[System.Int32]", @@ -22368,7 +22368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -22392,7 +22392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -22416,7 +22416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -22440,7 +22440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -22464,7 +22464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -22512,7 +22512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22665,7 +22665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -22689,7 +22689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -22713,7 +22713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -22737,7 +22737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -22761,7 +22761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -22809,7 +22809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22969,7 +22969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", "Tags": "System.Collections.Hashtable", @@ -23026,7 +23026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", "Tags": "System.Collections.Hashtable", @@ -23154,7 +23154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", "GenericTypeArguments": [], @@ -23211,7 +23211,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", "Tags": "System.Collections.Hashtable", @@ -23273,7 +23273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", "GenericTypeArguments": [], @@ -23365,7 +23365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", "GenericTypeArguments": [], @@ -23505,7 +23505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", "GenericTypeArguments": [], @@ -23573,7 +23573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", "GenericTypeArguments": [], @@ -23648,7 +23648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", @@ -23750,7 +23750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", @@ -23833,7 +23833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23954,7 +23954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -23972,7 +23972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -24151,7 +24151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24284,7 +24284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -24308,7 +24308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -24474,7 +24474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", @@ -24545,7 +24545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24678,7 +24678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -24702,7 +24702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -24892,7 +24892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25025,7 +25025,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -25049,7 +25049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -25215,7 +25215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25348,7 +25348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -25372,7 +25372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -25676,7 +25676,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25688,7 +25688,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PrivateEndpointStatus": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus]", @@ -25743,7 +25743,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25755,7 +25755,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25870,7 +25870,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25882,7 +25882,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPrivateEndpointStatus, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25989,7 +25989,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26001,7 +26001,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26096,7 +26096,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26108,7 +26108,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26394,7 +26394,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPoolsSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "SendRecvTimeoutInSeconds": "System.Nullable`1[System.Int32]", @@ -26442,7 +26442,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26454,7 +26454,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnabledState": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", @@ -26505,7 +26505,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26517,7 +26517,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CustomHttpsProvisioningState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", @@ -26578,7 +26578,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26590,7 +26590,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "Protocol": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", @@ -26642,7 +26642,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26654,7 +26654,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26749,7 +26749,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26761,7 +26761,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SampleSize": "System.Nullable`1[System.Int32]", "AdditionalLatencyMilliseconds": "System.Nullable`1[System.Int32]", @@ -26811,7 +26811,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26823,7 +26823,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RouteConfiguration": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", "HealthProbeSettings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]", @@ -26877,7 +26877,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26919,7 +26919,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26943,7 +26943,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26955,7 +26955,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngine, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", "Tags": "System.Collections.Hashtable", @@ -27003,7 +27003,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -27015,7 +27015,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchProcessingBehavior": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior", "Action": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction", @@ -27063,7 +27063,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchProcessingBehavior, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27158,7 +27158,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RouteConfigurationOverride": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", "ResponseHeaderActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", @@ -27204,7 +27204,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -27216,7 +27216,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HeaderActionType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType", "HeaderName": "System.String", @@ -27262,7 +27262,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHeaderActionType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27357,7 +27357,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -27369,7 +27369,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RulesEngineMatchVariable": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable", "RulesEngineOperator": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator", @@ -27418,7 +27418,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27513,7 +27513,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRulesEngineOperator, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27608,7 +27608,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSTransform]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSTransform]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSTransform, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSTransform, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -27620,7 +27620,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSTransform, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27737,7 +27737,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -27749,7 +27749,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27844,7 +27844,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -27856,7 +27856,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleGroupDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition]", "Description": "System.String", @@ -27902,7 +27902,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -27914,7 +27914,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleDefinition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleId": "System.String", "DefaultState": "System.String", @@ -27961,7 +27961,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -27973,7 +27973,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition]", "Priority": "System.Int32", @@ -28024,7 +28024,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28036,7 +28036,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchValue": "System.Collections.Generic.List`1[System.String]", "Transform": "System.Collections.Generic.List`1[System.String]", @@ -28085,7 +28085,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28097,7 +28097,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleSetType": "System.String", "RuleSetVersion": "System.String" @@ -28154,7 +28154,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28166,7 +28166,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRuleOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride]", "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion]", @@ -28212,7 +28212,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28224,7 +28224,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion]", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", @@ -28271,7 +28271,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28283,7 +28283,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRuleExclusion, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json index 2d004386f0c9..8ee79b1f5071 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CancellationRequested": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -116,7 +116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsNames": "System.Collections.Generic.List`1[System.String]", "KeyUsage": "System.Collections.Generic.List`1[System.String]", @@ -384,7 +384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsNames": "System.Collections.Generic.List`1[System.String]", "KeyUsage": "System.Collections.Generic.List`1[System.String]", @@ -626,7 +626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Email": "System.String", "VaultName": "System.String" @@ -698,7 +698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -994,7 +994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -1394,7 +1394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes", "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey", @@ -1497,7 +1497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -1584,7 +1584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -3149,7 +3149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -3491,7 +3491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -3903,7 +3903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -4262,7 +4262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -6035,7 +6035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -6315,7 +6315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -6650,7 +6650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -7075,7 +7075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -7395,7 +7395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -7677,7 +7677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -7937,7 +7937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -8021,7 +8021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -8085,7 +8085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -8642,7 +8642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -8700,7 +8700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -8757,7 +8757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -8816,7 +8816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -8898,7 +8898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -9516,7 +9516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -9727,7 +9727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -9916,7 +9916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -10534,7 +10534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Email": "System.String", "VaultName": "System.String" @@ -10606,7 +10606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -10818,7 +10818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -11074,7 +11074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "IssuerProvider": "System.String", @@ -11125,7 +11125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OrganizationDetails": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails", "ApiKey": "System.Security.SecureString", @@ -11201,7 +11201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -11459,7 +11459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -11793,7 +11793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CancellationRequested": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -11895,7 +11895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -12089,7 +12089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -12251,7 +12251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -12312,7 +12312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes", "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey", @@ -12375,7 +12375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -12438,7 +12438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes", "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey", @@ -12543,7 +12543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -12630,7 +12630,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -13738,7 +13738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -13949,7 +13949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -14162,7 +14162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -14373,7 +14373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -14580,7 +14580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -14789,7 +14789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -15927,7 +15927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -15987,7 +15987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes", "Tags": "System.Collections.Hashtable", @@ -16049,7 +16049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -16111,7 +16111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes", "Tags": "System.Collections.Hashtable", @@ -16212,7 +16212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -16854,7 +16854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -17065,7 +17065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -17278,7 +17278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -17920,7 +17920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -18747,7 +18747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19315,7 +19315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19595,7 +19595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19853,7 +19853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19911,7 +19911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19972,7 +19972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20032,7 +20032,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20117,7 +20117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -20419,7 +20419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -20747,7 +20747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20799,7 +20799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20854,7 +20854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20917,7 +20917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21019,7 +21019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21301,7 +21301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21563,7 +21563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21669,7 +21669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21990,7 +21990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -22296,7 +22296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -22421,7 +22421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -22719,7 +22719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -22971,7 +22971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -23054,7 +23054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -23308,7 +23308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -23636,7 +23636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -23733,7 +23733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -24191,7 +24191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -24653,7 +24653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -24756,7 +24756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -24952,7 +24952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -25116,7 +25116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -25233,7 +25233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -25525,7 +25525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -25671,7 +25671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -25775,7 +25775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -26238,7 +26238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -26704,7 +26704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -26808,7 +26808,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -27129,7 +27129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -27435,7 +27435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -27725,7 +27725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum", "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum", @@ -28111,7 +28111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum", "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum", @@ -28247,7 +28247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsNames": "System.Collections.Generic.List`1[System.String]", "KeyUsage": "System.Collections.Generic.List`1[System.String]", @@ -30418,7 +30418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -31050,7 +31050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -31259,7 +31259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -31967,7 +31967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -32091,7 +32091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -33181,7 +33181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -33392,7 +33392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -33579,7 +33579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -33766,7 +33766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -33951,7 +33951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -34917,7 +34917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -35016,7 +35016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -35334,7 +35334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -35640,7 +35640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Email": "System.String", "VaultName": "System.String" @@ -35712,7 +35712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -36008,7 +36008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -36408,7 +36408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OrganizationDetails": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails", "ApiKey": "System.Security.SecureString", @@ -36504,7 +36504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "IssuerProvider": "System.String", @@ -36775,7 +36775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "IssuerProvider": "System.String", @@ -37026,7 +37026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CancellationRequested": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -37128,7 +37128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CancellationRequested": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -37408,7 +37408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CancellationRequested": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -37668,7 +37668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes", "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey", @@ -37793,7 +37793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -38282,7 +38282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -38591,7 +38591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes", "Tags": "System.Collections.Hashtable", @@ -38697,7 +38697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -39019,7 +39019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -39366,7 +39366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -39744,7 +39744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -40212,7 +40212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -40291,7 +40291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -40545,7 +40545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -40873,7 +40873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes", "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey", @@ -40976,7 +40976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -41063,7 +41063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -41423,7 +41423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -41584,7 +41584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -42000,7 +42000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes", "Tags": "System.Collections.Hashtable", @@ -42084,7 +42084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -42338,7 +42338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -42666,7 +42666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -42790,7 +42790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -44668,7 +44668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -45041,7 +45041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -45366,7 +45366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -45691,7 +45691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -46014,7 +46014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -47616,7 +47616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsNames": "System.Collections.Generic.List`1[System.String]", "KeyUsage": "System.Collections.Generic.List`1[System.String]", @@ -47868,7 +47868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]", "Id": "System.String" @@ -47923,7 +47923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "IssuerProvider": "System.String", @@ -48224,7 +48224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]", "Id": "System.String" @@ -48403,7 +48403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "IssuerProvider": "System.String", @@ -48588,7 +48588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsNames": "System.Collections.Generic.List`1[System.String]", "KeyUsage": "System.Collections.Generic.List`1[System.String]", @@ -48788,7 +48788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsNames": "System.Collections.Generic.List`1[System.String]", "KeyUsage": "System.Collections.Generic.List`1[System.String]", @@ -49677,7 +49677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsNames": "System.Collections.Generic.List`1[System.String]", "KeyUsage": "System.Collections.Generic.List`1[System.String]", @@ -51317,7 +51317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes", "Tags": "System.Collections.Hashtable", @@ -51421,7 +51421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -51881,7 +51881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -52345,7 +52345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CancellationRequested": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -52447,7 +52447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CancellationRequested": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -52685,7 +52685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CancellationRequested": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -52897,7 +52897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -52996,7 +52996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -53192,7 +53192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -53356,7 +53356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes", "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey", @@ -53479,7 +53479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -53772,7 +53772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -53939,7 +53939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -54045,7 +54045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -54348,7 +54348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -54567,7 +54567,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes", "Tags": "System.Collections.Hashtable", @@ -54671,7 +54671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -54869,7 +54869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -55035,7 +55035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -55161,7 +55161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -55533,7 +55533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -56017,7 +56017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -56116,7 +56116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -56486,7 +56486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -56824,7 +56824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes", "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey", @@ -56947,7 +56947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -57730,7 +57730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsHsm": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -58254,7 +58254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes", "Tags": "System.Collections.Hashtable", @@ -58358,7 +58358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -58868,7 +58868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -59390,7 +59390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -59496,7 +59496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -59876,7 +59876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -60348,7 +60348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum", "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum", @@ -60428,7 +60428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60531,7 +60531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60709,7 +60709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60818,7 +60818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61026,7 +61026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -61132,7 +61132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -61512,7 +61512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -61984,7 +61984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -62090,7 +62090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -62213,7 +62213,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62233,7 +62233,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62394,7 +62394,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62420,7 +62420,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62562,7 +62562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", @@ -62655,7 +62655,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62681,7 +62681,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62847,7 +62847,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62873,7 +62873,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -63015,7 +63015,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -63041,7 +63041,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -63319,7 +63319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -63779,7 +63779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -64042,7 +64042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models", "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath", "GenericTypeArguments": [], @@ -64118,7 +64118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -64224,7 +64224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models", "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath", "GenericTypeArguments": [], @@ -64368,7 +64368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models", "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath", "GenericTypeArguments": [], @@ -64486,7 +64486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -64559,7 +64559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models", "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath", "GenericTypeArguments": [], @@ -64793,7 +64793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -65195,7 +65195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -65400,7 +65400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -65795,7 +65795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -66481,7 +66481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -66758,7 +66758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -66994,7 +66994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsNames": "System.Collections.Generic.List`1[System.String]", "KeyUsage": "System.Collections.Generic.List`1[System.String]", @@ -67192,7 +67192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -67386,7 +67386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "Enabled": "System.Nullable`1[System.Boolean]", @@ -67548,7 +67548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -67628,7 +67628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceId": "System.String", @@ -67916,7 +67916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FirstName": "System.String", "LastName": "System.String", @@ -68230,7 +68230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]", "Id": "System.String" @@ -68302,7 +68302,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -68385,7 +68385,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -68462,7 +68462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -68938,7 +68938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -69645,7 +69645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Permissions": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[]", "Id": "System.String", @@ -70026,7 +70026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -71244,7 +71244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -71472,7 +71472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -72845,7 +72845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -73020,7 +73020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -73142,7 +73142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -73422,7 +73422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm", "Tags": "System.Collections.Hashtable", @@ -74142,7 +74142,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy", "GenericTypeArguments": [], @@ -74152,7 +74152,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PermissionsToKeys": "System.Collections.Generic.List`1[System.String]", "PermissionsToSecrets": "System.Collections.Generic.List`1[System.String]", @@ -74274,7 +74274,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum", "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum", @@ -74345,7 +74345,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -74450,7 +74450,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -75585,7 +75585,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TagsDirectionary": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Tags": "System.Collections.Hashtable", @@ -76299,7 +76299,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]", "Id": "System.String" @@ -76344,7 +76344,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -76356,7 +76356,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FirstName": "System.String", "LastName": "System.String", @@ -76413,7 +76413,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TagsDictionary": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Tags": "System.Collections.Hashtable", @@ -76466,7 +76466,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Created": "System.Nullable`1[System.DateTime]", @@ -76540,7 +76540,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Created": "System.Nullable`1[System.DateTime]", @@ -76602,7 +76602,7 @@ "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath": { "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models", "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "PrivateKey": "System.String", @@ -76648,7 +76648,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[]": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission", "GenericTypeArguments": [], @@ -76658,7 +76658,7 @@ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission": { "Namespace": "Microsoft.Azure.Commands.KeyVault.Models", "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.4.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedActions": "System.String[]", "DeniedActions": "System.String[]", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll.json index e9d30455075c..7bd36a8f4075 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll.json @@ -14,31 +14,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -81,125 +82,833 @@ } ] }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AccountName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PoolName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PoolName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "VolumeName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "PoolObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", + "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TotalThroughputMibps": "System.Nullable`1[System.Double]", + "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", + "Size": "System.Nullable`1[System.Int64]", + "Tags": "System.Object", + "ResourceGroupName": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "PoolId": "System.String", + "ServiceLevel": "System.String", + "ProvisioningState": "System.String", + "QosType": "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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "PoolName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "VolumeName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ByResourceIdParameterSet", + "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": "ByParentObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PoolObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", + "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TotalThroughputMibps": "System.Nullable`1[System.Double]", + "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", + "Size": "System.Nullable`1[System.Int64]", + "Tags": "System.Object", + "ResourceGroupName": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "PoolId": "System.String", + "ServiceLevel": "System.String", + "ProvisioningState": "System.String", + "QosType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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-AnfVolume" + ] + }, + { + "VerbName": "Get", + "NounName": "AzNetAppFilesVolumeBackupStatus", + "Name": "Get-AzNetAppFilesVolumeBackupStatus", + "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.GetAzureRmNetAppFilesVolumeBackupStatus", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFieldsParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", + "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupStatus", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Healthy": "System.Nullable`1[System.Boolean]", + "RelationshipStatus": "System.String", + "MirrorState": "System.String", + "UnhealthyReason": "System.String", + "ErrorMessage": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PoolName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "VolumeName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "PoolObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", + "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TotalThroughputMibps": "System.Nullable`1[System.Double]", + "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", + "Size": "System.Nullable`1[System.Int64]", + "Tags": "System.Object", + "ResourceGroupName": "System.String", + "Location": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "PoolId": "System.String", + "ServiceLevel": "System.String", + "ProvisioningState": "System.String", + "QosType": "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": "Name", - "AliasList": [ - "VolumeName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.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": "PoolObject", + "Name": "InputObject", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", - "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "TotalThroughputMibps": "System.Nullable`1[System.Double]", - "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", - "Size": "System.Nullable`1[System.Int64]", + "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", + "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", + "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", + "KerberosEnabled": "System.Nullable`1[System.Boolean]", + "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", + "IsRestoring": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "ThroughputMibps": "System.Nullable`1[System.Double]", + "UsageThreshold": "System.Nullable`1[System.Int64]", + "MountTargets": "System.Object", "Tags": "System.Object", - "ResourceGroupName": "System.String", - "Location": "System.String", - "Id": "System.String", - "Name": "System.String", + "CreationToken": "System.String", + "FileSystemId": "System.String", + "SnapshotId": "System.String", + "BaremetalTenantId": "System.String", + "SubnetId": "System.String", + "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "PoolId": "System.String", + "BackupId": "System.String", + "SecurityStyle": "System.String", + "Name": "System.String", + "Id": "System.String", + "Location": "System.String", "ServiceLevel": "System.String", - "ProvisioningState": "System.String", - "QosType": "System.String" + "ResourceGroupName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -374,7 +1083,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -498,7 +1207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -602,6 +1311,135 @@ } ] }, + { + "Name": "ByObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", + "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", + "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", + "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", + "KerberosEnabled": "System.Nullable`1[System.Boolean]", + "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", + "IsRestoring": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "ThroughputMibps": "System.Nullable`1[System.Double]", + "UsageThreshold": "System.Nullable`1[System.Int64]", + "MountTargets": "System.Object", + "Tags": "System.Object", + "CreationToken": "System.String", + "FileSystemId": "System.String", + "SnapshotId": "System.String", + "BaremetalTenantId": "System.String", + "SubnetId": "System.String", + "VolumeType": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackupId": "System.String", + "SecurityStyle": "System.String", + "Name": "System.String", + "Id": "System.String", + "Location": "System.String", + "ServiceLevel": "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": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, { "Name": "__AllParameterSets", "Parameters": [ @@ -648,7 +1486,7 @@ } ], "AliasList": [ - "Get-AnfVolume" + "Get-AnfVolumeBackupStatus" ] }, { @@ -665,31 +1503,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -944,7 +1783,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -996,7 +1835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationId": "System.String", "EndpointType": "System.String", @@ -1052,7 +1891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" }, @@ -1122,7 +1961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -1317,6 +2156,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "LdapEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Tag", "AliasList": [ @@ -1343,7 +2200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -1736,7 +2593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -1794,7 +2651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationId": "System.String", "EndpointType": "System.String", @@ -1856,7 +2713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" }, @@ -1938,7 +2795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -2162,6 +3019,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "LdapEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Tag", @@ -2337,7 +3218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -2395,7 +3276,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationId": "System.String", "EndpointType": "System.String", @@ -2457,7 +3338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" }, @@ -2539,7 +3420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -2763,6 +3644,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "LdapEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Tag", @@ -2864,7 +3769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -3032,7 +3937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -3090,7 +3995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationId": "System.String", "EndpointType": "System.String", @@ -3152,7 +4057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" }, @@ -3234,7 +4139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -3458,6 +4363,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "LdapEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Tag", @@ -3655,7 +4584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -3719,31 +4648,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -4046,7 +4976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -4276,31 +5206,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -4634,7 +5565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -4698,31 +5629,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -5049,7 +5981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -5279,31 +6211,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -5637,7 +6570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -5701,31 +6634,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -6010,7 +6944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -6192,31 +7126,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -6373,31 +7308,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -6582,7 +7518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -6634,7 +7570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -6747,7 +7683,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -6811,31 +7747,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -7100,7 +8037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -7158,7 +8095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -7341,7 +8278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -7461,7 +8398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -7519,7 +8456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -7726,7 +8663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -7784,7 +8721,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -8015,7 +8952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -8073,7 +9010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -8230,31 +9167,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -8364,7 +9302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -8422,7 +9360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -8588,7 +9526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -8691,7 +9629,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -8899,7 +9837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -9129,7 +10067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -9299,31 +10237,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -9746,31 +10685,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -9909,7 +10849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -10117,31 +11057,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -10570,31 +11511,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -10888,31 +11830,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -10966,7 +11909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -11364,31 +12307,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -11516,7 +12460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -11726,7 +12670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -11865,7 +12809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -12149,7 +13093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -12311,7 +13255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -12468,7 +13412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -12522,7 +13466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -12577,7 +13521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -12633,7 +13577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -12709,7 +13653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -12929,7 +13873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -12989,7 +13933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -13050,7 +13994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -13112,7 +14056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -13294,7 +14238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -13354,7 +14298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -13415,7 +14359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -13477,7 +14421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -13609,7 +14553,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -13724,7 +14668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -13784,7 +14728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -13845,7 +14789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -13907,7 +14851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -14048,7 +14992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -14187,7 +15131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -14246,7 +15190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -14535,7 +15479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -14760,7 +15704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -14975,7 +15919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -15132,7 +16076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -15186,7 +16130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -15241,7 +16185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -15297,7 +16241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -15373,7 +16317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -15611,7 +16555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -15671,7 +16615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -15732,7 +16676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -15794,7 +16738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -15976,7 +16920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -16036,7 +16980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -16097,7 +17041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -16159,7 +17103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -16291,7 +17235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -16406,7 +17350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -16466,7 +17410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -16527,7 +17471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -16589,7 +17533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -16795,7 +17739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -16855,7 +17799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -16916,7 +17860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -16978,7 +17922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -17119,7 +18063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -17278,7 +18222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -17332,7 +18276,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -17387,7 +18331,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -17443,7 +18387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -17537,7 +18481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -17596,7 +18540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -17823,7 +18767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -17883,7 +18827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -17944,7 +18888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -18006,7 +18950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -18164,7 +19108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -18255,7 +19199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -18315,7 +19259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -18376,7 +19320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -18438,7 +19382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -18596,7 +19540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -18656,7 +19600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -18717,7 +19661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -18779,7 +19723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -18961,7 +19905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -19021,7 +19965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -19082,7 +20026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -19144,7 +20088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -19276,7 +20220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -19372,7 +20316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -19432,7 +20376,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -19493,7 +20437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -19555,7 +20499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -19825,31 +20769,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -20242,31 +21187,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -20600,31 +21546,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -21017,31 +21964,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -21246,7 +22194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Healthy": "System.Nullable`1[System.Boolean]", "RelationshipStatus": "System.String", @@ -21395,31 +22343,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -21722,31 +22671,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -22014,31 +22964,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -22407,31 +23358,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -22747,31 +23699,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -23140,31 +24093,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -23480,31 +24434,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -23873,31 +24828,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -24102,7 +25058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -24241,7 +25197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -24525,7 +25481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -24687,7 +25643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -24900,7 +25856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -25406,7 +26362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -25741,7 +26697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -25800,7 +26756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -26089,7 +27045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -26314,7 +27270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -26529,7 +27485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -26742,7 +27698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -27266,7 +28222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -27700,7 +28656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -27915,7 +28871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -27974,7 +28930,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -28321,7 +29277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -28770,7 +29726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TotalThroughputMibps": "System.Nullable`1[System.Double]", "UtilizedThroughputMibps": "System.Nullable`1[System.Double]", @@ -28969,7 +29925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "Size": "System.Nullable`1[System.Int64]", @@ -28981,7 +29937,8 @@ "BackupId": "System.String", "Label": "System.String", "BackupType": "System.String", - "ProvisioningState": "System.String" + "ProvisioningState": "System.String", + "VolumeName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -29118,6 +30075,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "AccountBackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": [], @@ -29142,31 +30117,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -29415,6 +30391,148 @@ } ] }, + { + "Name": "ByAccountBackupFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AccountBackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "BackupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": [ @@ -29486,11 +30604,11 @@ ] }, { - "Name": "ByResourceIdParameterSet", + "Name": "ByParentObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "AccountBackupName", "AliasList": [], "Type": { "Namespace": "System", @@ -29507,10 +30625,95 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VolumeObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", + "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", + "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", + "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", + "KerberosEnabled": "System.Nullable`1[System.Boolean]", + "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", + "IsRestoring": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "ThroughputMibps": "System.Nullable`1[System.Double]", + "UsageThreshold": "System.Nullable`1[System.Int64]", + "MountTargets": "System.Object", + "Tags": "System.Object", + "CreationToken": "System.String", + "FileSystemId": "System.String", + "SnapshotId": "System.String", + "BaremetalTenantId": "System.String", + "SubnetId": "System.String", + "VolumeType": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackupId": "System.String", + "SecurityStyle": "System.String", + "Name": "System.String", + "Id": "System.String", + "Location": "System.String", + "ServiceLevel": "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": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -29580,81 +30783,21 @@ ] }, { - "Name": "ByParentObjectParameterSet", + "Name": "ByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "VolumeObject", + "Name": "ResourceId", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", - "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", - "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", - "KerberosEnabled": "System.Nullable`1[System.Boolean]", - "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", - "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", - "ThroughputMibps": "System.Nullable`1[System.Double]", - "UsageThreshold": "System.Nullable`1[System.Int64]", - "MountTargets": "System.Object", - "Tags": "System.Object", - "CreationToken": "System.String", - "FileSystemId": "System.String", - "ProvisioningState": "System.String", - "SnapshotId": "System.String", - "BaremetalTenantId": "System.String", - "SubnetId": "System.String", - "VolumeType": "System.String", - "Type": "System.String", - "Name": "System.String", - "BackupId": "System.String", - "SecurityStyle": "System.String", - "Id": "System.String", - "Location": "System.String", - "ServiceLevel": "System.String", - "ResourceGroupName": "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, @@ -29663,8 +30806,8 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -29752,7 +30895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "Size": "System.Nullable`1[System.Int64]", @@ -29764,7 +30907,8 @@ "BackupId": "System.String", "Label": "System.String", "BackupType": "System.String", - "ProvisioningState": "System.String" + "ProvisioningState": "System.String", + "VolumeName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -29943,31 +31087,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -30368,31 +31513,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -30555,7 +31701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -30708,6 +31854,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "AccountBackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": [], @@ -30732,31 +31896,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -30810,7 +31975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "Size": "System.Nullable`1[System.Int64]", @@ -30822,7 +31987,8 @@ "BackupId": "System.String", "Label": "System.String", "BackupType": "System.String", - "ProvisioningState": "System.String" + "ProvisioningState": "System.String", + "VolumeName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -31109,6 +32275,146 @@ } ] }, + { + "Name": "ByAccountBackupFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AccountBackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByParentObjectParameterSet", "Parameters": [ @@ -31145,31 +32451,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -31389,7 +32696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "Size": "System.Nullable`1[System.Int64]", @@ -31401,7 +32708,8 @@ "BackupId": "System.String", "Label": "System.String", "BackupType": "System.String", - "ProvisioningState": "System.String" + "ProvisioningState": "System.String", + "VolumeName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -31602,7 +32910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -31835,31 +33143,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -31913,7 +33222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "Size": "System.Nullable`1[System.Int64]", @@ -31925,7 +33234,8 @@ "BackupId": "System.String", "Label": "System.String", "BackupType": "System.String", - "ProvisioningState": "System.String" + "ProvisioningState": "System.String", + "VolumeName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -32280,31 +33590,32 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]", - "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", + "LdapEnabled": "System.Nullable`1[System.Boolean]", + "SmbEncryption": "System.Nullable`1[System.Boolean]", "KerberosEnabled": "System.Nullable`1[System.Boolean]", "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]", "IsRestoring": "System.Nullable`1[System.Boolean]", - "SmbEncryption": "System.Nullable`1[System.Boolean]", + "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]", "ThroughputMibps": "System.Nullable`1[System.Double]", "UsageThreshold": "System.Nullable`1[System.Int64]", "MountTargets": "System.Object", "Tags": "System.Object", "CreationToken": "System.String", "FileSystemId": "System.String", - "ProvisioningState": "System.String", "SnapshotId": "System.String", "BaremetalTenantId": "System.String", "SubnetId": "System.String", "VolumeType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "BackupId": "System.String", "SecurityStyle": "System.String", + "Name": "System.String", "Id": "System.String", "Location": "System.String", "ServiceLevel": "System.String", @@ -32670,7 +33981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "Size": "System.Nullable`1[System.Int64]", @@ -32682,7 +33993,8 @@ "BackupId": "System.String", "Label": "System.String", "BackupType": "System.String", - "ProvisioningState": "System.String" + "ProvisioningState": "System.String", + "VolumeName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -32841,19 +34153,20 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -32861,7 +34174,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -33213,13 +34526,31 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "AccountObject", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -33718,6 +35049,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -34122,6 +35477,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -34173,7 +35552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -34591,6 +35970,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -34651,7 +36054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -34792,7 +36195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -35172,7 +36575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -35316,7 +36719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -35575,7 +36978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -36193,7 +37596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -36491,7 +37894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -36614,7 +38017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -36691,7 +38094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -36982,7 +38385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -37207,7 +38610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -37424,7 +38827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -37683,7 +39086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -38319,7 +39722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -38865,7 +40268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -39124,7 +40527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -39183,7 +40586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -39586,7 +40989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -40197,7 +41600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -40452,19 +41855,20 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -40472,7 +41876,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -40580,7 +41984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -40866,7 +42270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -41010,19 +42414,20 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -41030,7 +42435,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -41136,7 +42541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -41195,19 +42600,20 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -41215,7 +42621,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -41487,7 +42893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -41620,19 +43026,20 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -41640,7 +43047,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -41842,19 +43249,20 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -41862,7 +43270,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -42232,13 +43640,31 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "AccountObject", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -42297,19 +43723,20 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -42317,7 +43744,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -42832,6 +44259,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -42907,7 +44358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -43325,6 +44776,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -43729,6 +45204,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -43780,19 +45279,20 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -43800,7 +45300,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -44210,6 +45710,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AllowLocalNfsUsersWithLdap", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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", @@ -44270,7 +45794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -44640,7 +46164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -44756,7 +46280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -44907,7 +46431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -45051,7 +46575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -45229,7 +46753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -45555,7 +47079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -45765,7 +47289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -45881,7 +47405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -46240,7 +47764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -46537,7 +48061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -46671,7 +48195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -46689,7 +48213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -46881,7 +48405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -47073,7 +48597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -47167,7 +48691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", "Tags": "System.Object", @@ -47306,7 +48830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", "GenericTypeArguments": [], @@ -47544,7 +49068,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Replication": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject", "Backup": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", @@ -47590,7 +49114,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationId": "System.String", "EndpointType": "System.String", @@ -47648,7 +49172,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -47707,7 +49231,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" }, @@ -47751,7 +49275,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -47795,7 +49319,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule", "GenericTypeArguments": [], @@ -47805,7 +49329,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UnixReadOnly": "System.Nullable`1[System.Boolean]", "UnixReadWrite": "System.Nullable`1[System.Boolean]", @@ -48099,7 +49623,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -48111,7 +49635,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnabled": "System.Nullable`1[System.Boolean]", "BackupsCount": "System.Nullable`1[System.Int32]", @@ -48157,7 +49681,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -48169,19 +49693,20 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackupOperators": "System.Collections.Generic.IList`1[System.String]", "SecurityOperators": "System.Collections.Generic.IList`1[System.String]", - "LdapOverTLS": "System.Nullable`1[System.Boolean]", + "BackupOperators": "System.Collections.Generic.IList`1[System.String]", + "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]", "LdapSigning": "System.Nullable`1[System.Boolean]", "AesEncryption": "System.Nullable`1[System.Boolean]", + "LdapOverTLS": "System.Nullable`1[System.Boolean]", "ServerRootCACertificate": "System.String", "AdName": "System.String", "KdcIP": "System.String", "Site": "System.String", "OrganizationalUnit": "System.String", - "SmbServerName": "System.String", + "StatusDetails": "System.String", "Status": "System.String", "Dns": "System.String", "Domain": "System.String", @@ -48189,7 +49714,7 @@ "Username": "System.String", "ActiveDirectoryId": "System.String", "AccountName": "System.String", - "StatusDetails": "System.String", + "SmbServerName": "System.String", "ResourceGroupName": "System.String" }, "ElementType": null, @@ -48254,7 +49779,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -48301,7 +49826,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -48347,7 +49872,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -48395,7 +49920,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Peering.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Peering.dll.json index 203242c79187..4ff0af7aeab6 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Peering.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Peering.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -494,7 +494,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceLocation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceLocation, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceLocation, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Country": "System.String", "State": "System.String", @@ -672,7 +672,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceLocation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceLocation, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceLocation, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Country": "System.String", "State": "System.String", @@ -892,7 +892,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceProvider", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceProviderName": "System.String", "Name": "System.String", @@ -1060,7 +1060,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1602,7 +1602,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Events": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", "Prefix": "System.String", @@ -1710,7 +1710,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1946,7 +1946,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2434,7 +2434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Events": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", "Prefix": "System.String", @@ -2542,7 +2542,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2814,7 +2814,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringService, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3513,7 +3513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Events": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", "Prefix": "System.String", @@ -3785,7 +3785,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Events": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", "Prefix": "System.String", @@ -4451,6 +4451,236 @@ ], "AliasList": [] }, + { + "VerbName": "Get", + "NounName": "AzPeeringCdnPeeringPrefix", + "Name": "Get-AzPeeringCdnPeeringPrefix", + "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Peering.GetAzPeeringCdnPeeringPrefixCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSCdnPeeringPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSCdnPeeringPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IsPrimaryRegion": "System.Nullable`1[System.Boolean]", + "Prefix": "System.String", + "AzureRegion": "System.String", + "AzureService": "System.String", + "BgpCommunity": "System.String", + "Name": "System.String", + "Id": "System.String", + "Type": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "prefix", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "azureRegion", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "azureService", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "isPrimaryRegion", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "bgpCommunity", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "id", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "type", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "PeeringLocation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PeeringLocation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzLegacyPeering", @@ -4465,7 +4695,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -4757,7 +4987,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -5265,7 +5495,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocation, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocation, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesExchange", @@ -5860,7 +6090,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringReceivedRoute", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringReceivedRoute, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringReceivedRoute, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Prefix": "System.String", "NextHop": "System.String", @@ -6521,7 +6751,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -6639,7 +6869,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -6846,7 +7076,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", "GenericTypeArguments": [], @@ -6864,7 +7094,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", "GenericTypeArguments": [], @@ -6975,7 +7205,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -7170,7 +7400,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", "GenericTypeArguments": [], @@ -7194,7 +7424,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", "GenericTypeArguments": [], @@ -7406,7 +7636,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", "GenericTypeArguments": [], @@ -7642,7 +7872,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", "GenericTypeArguments": [], @@ -7881,7 +8111,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Asn": "System.Nullable`1[System.Int32]", "PeeringServicePrefixKey": "System.String", @@ -7969,7 +8199,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -8197,7 +8427,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -8623,7 +8853,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Asn": "System.Nullable`1[System.Int32]", "PeeringServicePrefixKey": "System.String", @@ -8711,7 +8941,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -8975,7 +9205,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -9612,7 +9842,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Events": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", "Prefix": "System.String", @@ -9884,7 +10114,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Events": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", "Prefix": "System.String", @@ -10564,7 +10794,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Asn": "System.Nullable`1[System.Int32]", "PeeringServicePrefixKey": "System.String", @@ -10652,7 +10882,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Asn": "System.Nullable`1[System.Int32]", "PeeringServicePrefixKey": "System.String", @@ -10886,7 +11116,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Asn": "System.Nullable`1[System.Int32]", "PeeringServicePrefixKey": "System.String", @@ -11450,7 +11680,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Prefix": "System.String", "PrefixValidationState": "System.String", @@ -11548,7 +11778,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -11776,7 +12006,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -12202,7 +12432,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Prefix": "System.String", "PrefixValidationState": "System.String", @@ -12300,7 +12530,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -12564,7 +12794,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -13201,7 +13431,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Events": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", "Prefix": "System.String", @@ -13473,7 +13703,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Events": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", "Prefix": "System.String", @@ -14153,7 +14383,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Prefix": "System.String", "PrefixValidationState": "System.String", @@ -14251,7 +14481,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Prefix": "System.String", "PrefixValidationState": "System.String", @@ -14495,7 +14725,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringRegisteredPrefix, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Prefix": "System.String", "PrefixValidationState": "System.String", @@ -15069,7 +15299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -15187,7 +15417,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -15358,7 +15588,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", "GenericTypeArguments": [], @@ -15376,7 +15606,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", "GenericTypeArguments": [], @@ -15433,7 +15663,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -15556,7 +15786,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", "GenericTypeArguments": [], @@ -15624,7 +15854,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -15747,7 +15977,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", "GenericTypeArguments": [], @@ -15839,7 +16069,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", "GenericTypeArguments": [], @@ -15931,7 +16161,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", "GenericTypeArguments": [], @@ -16047,7 +16277,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", "GenericTypeArguments": [], @@ -16163,7 +16393,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", "GenericTypeArguments": [], @@ -16282,7 +16512,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerContactDetail": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]", "PeerAsnProperty": "System.Nullable`1[System.Int32]", @@ -16642,7 +16872,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerContactDetail": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]", "PeerAsnProperty": "System.Nullable`1[System.Int32]", @@ -16794,7 +17024,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail", "GenericTypeArguments": [], @@ -16941,7 +17171,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail[], Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail", "GenericTypeArguments": [], @@ -17108,7 +17338,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Role": "System.String", "Email": "System.String", @@ -17460,7 +17690,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerContactDetail": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]", "PeerAsnProperty": "System.Nullable`1[System.Int32]", @@ -17686,7 +17916,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerContactDetail": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]", "PeerAsnProperty": "System.Nullable`1[System.Int32]", @@ -18308,7 +18538,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerContactDetail": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]", "PeerAsnProperty": "System.Nullable`1[System.Int32]", @@ -18406,7 +18636,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerContactDetail": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]", "PeerAsnProperty": "System.Nullable`1[System.Int32]", @@ -18560,7 +18790,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerContactDetail": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]", "PeerAsnProperty": "System.Nullable`1[System.Int32]", @@ -18825,7 +19055,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -19089,7 +19319,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direct": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", "Exchange": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", @@ -19755,7 +19985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", @@ -20524,7 +20754,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", @@ -20607,7 +20837,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", @@ -20822,7 +21052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", @@ -21004,7 +21234,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", @@ -21186,7 +21416,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", @@ -21393,7 +21623,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -21401,6 +21631,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -21460,6 +21691,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -21581,7 +21816,7 @@ }, "ValidateSet": [], "ValidateRangeMin": 10000, - "ValidateRangeMax": 100000, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": true }, { @@ -21766,7 +22001,7 @@ }, "ValidateSet": [], "ValidateRangeMin": 10000, - "ValidateRangeMax": 100000, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -21934,7 +22169,7 @@ }, "ValidateSet": [], "ValidateRangeMin": 10000, - "ValidateRangeMax": 100000, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -22144,7 +22379,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -22152,6 +22387,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -22211,6 +22447,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -22247,7 +22487,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -22255,6 +22495,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -22314,6 +22555,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -22522,7 +22767,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -22530,6 +22775,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -22589,6 +22835,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -22724,7 +22974,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -22732,6 +22982,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -22791,6 +23042,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -22926,7 +23181,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -22934,6 +23189,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -22993,6 +23249,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -23104,7 +23364,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -23112,6 +23372,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -23171,6 +23432,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -23280,7 +23545,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -23288,6 +23553,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -23347,6 +23613,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -23640,7 +23910,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServiceSku, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -23895,7 +24165,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -23907,7 +24177,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringServicePrefixEvent, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EventTimestamp": "System.Nullable`1[System.DateTime]", "EventType": "System.String", @@ -24000,10 +24270,22 @@ "Methods": [], "Constructors": [] }, + "System.Nullable`1[System.Boolean]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Boolean" + ], + "Methods": [], + "Constructors": [] + }, "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesDirect, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerAsn": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSSubResource", "Connections": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection]", @@ -24072,7 +24354,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSSubResource": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSSubResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSSubResource, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSSubResource, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -24126,7 +24408,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24138,7 +24420,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "UseForPeeringService": "System.Nullable`1[System.Boolean]", @@ -24146,6 +24428,7 @@ "ProvisionedBandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "SessionAddressProvider": "System.String", + "MicrosoftTrackingId": "System.String", "ConnectionState": "System.String", "ConnectionIdentifier": "System.String", "ErrorMessage": "System.String" @@ -24205,6 +24488,10 @@ "Name": "useForPeeringService", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "microsoftTrackingId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "peeringDBFacilityId", "Type": "System.Reflection.RuntimeParameterInfo" @@ -24232,7 +24519,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaxPrefixesAdvertisedV4": "System.Nullable`1[System.Int32]", "MaxPrefixesAdvertisedV6": "System.Nullable`1[System.Int32]", @@ -24345,22 +24632,10 @@ "Methods": [], "Constructors": [] }, - "System.Nullable`1[System.Boolean]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Boolean" - ], - "Methods": [], - "Constructors": [] - }, "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringPropertiesExchange, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerAsn": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSSubResource", "Connections": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection]" @@ -24419,7 +24694,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24431,7 +24706,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangeConnection, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSession": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSBgpSession", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", @@ -24505,7 +24780,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringSku": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringSku, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringSku, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String", @@ -24574,7 +24849,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesDirect": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesDirect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesDirect, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesDirect, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeeringFacilities": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility]", "BandwidthOffers": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer]" @@ -24633,7 +24908,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24645,7 +24920,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSDirectPeeringFacility, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", "Address": "System.String", @@ -24714,7 +24989,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24726,7 +25001,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringBandwidthOffer, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ValueInMbps": "System.Nullable`1[System.Int32]", "OfferName": "System.String" @@ -24785,7 +25060,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesExchange": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesExchange", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesExchange, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeeringLocationPropertiesExchange, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeeringFacilities": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility]" }, @@ -24839,7 +25114,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24851,7 +25126,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSExchangePeeringFacility, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BandwidthInMbps": "System.Nullable`1[System.Int32]", "PeeringDBFacilityId": "System.Nullable`1[System.Int32]", @@ -24940,7 +25215,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24952,7 +25227,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSContactDetail, Microsoft.Azure.PowerShell.Cmdlets.Peering, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Role": "System.String", "Email": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json index adb2a1137ce5..323484f23432 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -80,7 +80,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -177,7 +177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -355,7 +355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -464,7 +464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -672,7 +672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackedUp": "System.Boolean", "VaultId": "System.String" @@ -1224,7 +1224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -1289,7 +1289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1451,7 +1451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1611,7 +1611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1797,7 +1797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1981,7 +1981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "BackupEngineType": "System.String", @@ -2220,7 +2220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -2303,7 +2303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -2367,7 +2367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2472,7 +2472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2674,7 +2674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2785,7 +2785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2986,7 +2986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -3056,7 +3056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3167,7 +3167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3368,7 +3368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3479,7 +3479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3687,7 +3687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -3752,7 +3752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -3891,7 +3891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -4079,7 +4079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -4154,7 +4154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4257,7 +4257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4435,7 +4435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -4516,7 +4516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4625,7 +4625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4833,7 +4833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -4899,7 +4899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -5069,7 +5069,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -5294,7 +5294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -5369,7 +5369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5472,7 +5472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5575,7 +5575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -5710,7 +5710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -5791,7 +5791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5900,7 +5900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6009,7 +6009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -6174,7 +6174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -6240,7 +6240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -6318,7 +6318,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -6447,7 +6447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -6653,7 +6653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -6907,7 +6907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -7161,7 +7161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -7343,7 +7343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -7477,7 +7477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -7558,7 +7558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -7692,7 +7692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -7871,7 +7871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -8012,7 +8012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -8090,7 +8090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -8154,7 +8154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8257,7 +8257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -8335,7 +8335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8438,7 +8438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8541,7 +8541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8644,7 +8644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8840,7 +8840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -8910,7 +8910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9043,7 +9043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9152,7 +9152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9261,7 +9261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9486,7 +9486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9595,7 +9595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9728,7 +9728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9837,7 +9837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9946,7 +9946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10171,7 +10171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -10261,7 +10261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10370,7 +10370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10479,7 +10479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10728,7 +10728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10837,7 +10837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10946,7 +10946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11178,7 +11178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -11254,7 +11254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -11336,7 +11336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11439,7 +11439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11635,7 +11635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -11705,7 +11705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11882,7 +11882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -11952,7 +11952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12061,7 +12061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12310,7 +12310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12610,7 +12610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -12675,7 +12675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -12739,7 +12739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12917,7 +12917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -12987,7 +12987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13195,7 +13195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -13261,7 +13261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -13413,7 +13413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -13595,7 +13595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -13661,7 +13661,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13681,7 +13681,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13759,7 +13759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -13824,7 +13824,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13919,7 +13919,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13945,7 +13945,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -14047,7 +14047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -14118,7 +14118,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -14243,7 +14243,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -14309,7 +14309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -14467,7 +14467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -14847,7 +14847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -14913,7 +14913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -15053,7 +15053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -15359,7 +15359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -15645,7 +15645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -15724,7 +15724,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -15744,7 +15744,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -15913,7 +15913,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16007,7 +16007,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16033,7 +16033,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16206,7 +16206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16262,7 +16262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16365,7 +16365,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16424,7 +16424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16533,7 +16533,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16610,7 +16610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16666,7 +16666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16769,7 +16769,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16828,7 +16828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16937,7 +16937,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17014,7 +17014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -17093,7 +17093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17196,7 +17196,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17216,7 +17216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17271,7 +17271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17407,7 +17407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17516,7 +17516,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17542,7 +17542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17603,7 +17603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17739,7 +17739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -17818,7 +17818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -18111,7 +18111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -18416,7 +18416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -18482,7 +18482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -18542,7 +18542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18597,7 +18597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18727,7 +18727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -18861,7 +18861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18922,7 +18922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18983,7 +18983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -19141,7 +19141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -19282,7 +19282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19346,7 +19346,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19484,7 +19484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19652,7 +19652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartTime": "System.Nullable`1[System.DateTime]", "EndTime": "System.Nullable`1[System.DateTime]", @@ -19747,7 +19747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19933,7 +19933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -20084,7 +20084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -20310,7 +20310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -20414,7 +20414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -20654,7 +20654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -20829,7 +20829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21052,7 +21052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21326,7 +21326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21382,7 +21382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21520,7 +21520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21688,7 +21688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", "PointInTime": "System.DateTime", @@ -21759,7 +21759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21840,7 +21840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21915,7 +21915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22028,7 +22028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22110,7 +22110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22248,7 +22248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22317,7 +22317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22398,7 +22398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22529,7 +22529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22623,7 +22623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22808,7 +22808,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -22889,7 +22889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -23020,7 +23020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -23114,7 +23114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -23275,7 +23275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -23356,7 +23356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -23487,7 +23487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -23581,7 +23581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -23749,7 +23749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -23833,7 +23833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -23896,7 +23896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", "PointInTime": "System.DateTime", @@ -24020,7 +24020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24141,7 +24141,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24355,6 +24355,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "RestoreAsManagedDisk", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "VaultId", "AliasList": [], @@ -24534,7 +24552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -24865,7 +24883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -24934,7 +24952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25067,7 +25085,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25305,7 +25323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -25610,7 +25628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -25965,7 +25983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -26260,6 +26278,359 @@ } ] }, + { + "Name": "AzureVMRestoreUnmanagedAsManaged", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RecoveryPoint", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", + "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", + "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", + "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", + "RecoveryPointId": "System.String", + "ItemName": "System.String", + "Id": "System.String", + "ContainerName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "StorageAccountResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "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": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UseOriginalStorageAccount", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "RestoreOnlyOSDisk", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RestoreDiskList", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RestoreAsManagedDisk", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VaultLocation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RestoreToSecondaryRegion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "VaultId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, { "Name": "AzureWorkloadParameterSet", "Parameters": [ @@ -26270,7 +26641,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", "PointInTime": "System.DateTime", @@ -26539,7 +26910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -26608,7 +26979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -26764,7 +27135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -26839,7 +27210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -26950,7 +27321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.VaultProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.VaultProperty, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.VaultProperty, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "encryptionProperties": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig", "StorageModelType": "System.String", @@ -27684,7 +28055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "BackupEngineType": "System.String", @@ -27749,7 +28120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "BackupEngineType": "System.String", @@ -27888,7 +28259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "BackupEngineType": "System.String", @@ -28188,7 +28559,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28345,7 +28716,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28440,7 +28811,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28716,7 +29087,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28811,7 +29182,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28906,7 +29277,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -28961,7 +29332,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29056,7 +29427,7 @@ "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.String", "PrivateEndpointStateForBackup": "System.String", @@ -29171,7 +29542,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json index b7acdb1c4f8b..ede229a34b51 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomEmailAddress": "System.Collections.Generic.IList`1[System.String]", "EmailSubscriptionOwner": "System.String", @@ -173,7 +173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomEmailAddress": "System.Collections.Generic.IList`1[System.String]", "EmailSubscriptionOwner": "System.String", @@ -814,7 +814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsManagedDisk": "System.Boolean", "VhdUri": "System.String", @@ -1730,7 +1730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskId": "System.String", "LogStorageAccountId": "System.String", @@ -2090,7 +2090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificEventDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails", "EventSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails", @@ -2236,7 +2236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -2781,7 +2781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -3057,7 +3057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -3394,7 +3394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -3872,7 +3872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -3952,7 +3952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -4079,7 +4079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -4274,7 +4274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -4354,7 +4354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -4422,7 +4422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -4508,7 +4508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -4596,7 +4596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -4655,7 +4655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -4729,7 +4729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -4821,7 +4821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -4915,7 +4915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -5036,7 +5036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -5132,7 +5132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -5400,7 +5400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -5732,7 +5732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -5830,7 +5830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -6016,7 +6016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -6196,7 +6196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -6294,7 +6294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -6526,7 +6526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -6758,7 +6758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -6856,7 +6856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -7042,7 +7042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -7222,25 +7222,22 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "ReuseExistingNic": "System.Boolean", "EnableAcceleratedNetworkingOnRecovery": "System.Boolean", "TfoReuseExistingNic": "System.Boolean", - "ReuseExistingNic": "System.Boolean", "EnableAcceleratedNetworkingOnTfo": "System.Boolean", - "RecoveryIPConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]", - "TfoIPConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]", + "IPConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails]", + "NicId": "System.String", + "RecoveryVMNetworkId": "System.String", "RecoveryNicName": "System.String", - "RecoveryVMSubnetName": "System.String", + "RecoveryNicResourceGroupName": "System.String", "RecoveryNetworkSecurityGroupId": "System.String", "TfoVMNetworkId": "System.String", "TfoNicName": "System.String", "TfoNicResourceGroupName": "System.String", - "RecoveryVMNetworkId": "System.String", - "TfoVMSubnetName": "System.String", - "TfoNetworkSecurityGroupId": "System.String", - "RecoveryNicResourceGroupName": "System.String", - "NicId": "System.String" + "TfoNetworkSecurityGroupId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -7309,7 +7306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -7473,24 +7470,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "RecoveryVMSubnetName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, { "Name": "RecoveryNetworkSecurityGroupId", "AliasList": [], @@ -7527,60 +7506,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "RecoveryNicStaticIPAddress", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, 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": "RecoveryPublicIPAddressId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RecoveryLBBackendAddressPoolId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, { "Name": "TfoVMNetworkId", "AliasList": [], @@ -7653,24 +7578,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "TfoVMSubnetName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, { "Name": "TfoNetworkSecurityGroupId", "AliasList": [], @@ -7708,50 +7615,14 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "TfoNicStaticIPAddress", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, 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": "TfoPublicIPAddressId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TfoLBBackendAddressPoolId", + "Name": "IPConfig", "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.RecoveryServices.SiteRecovery", + "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, - "ElementType": "System.String", + "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -7830,7 +7701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -8025,7 +7896,151 @@ }, { "ParameterMetadata": { - "Name": "RecoveryVMSubnetName", + "Name": "RecoveryNetworkSecurityGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "EnableAcceleratedNetworkingOnRecovery", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "TfoVMNetworkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "TfoNicName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "TfoNicResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "TfoReuseExistingNic", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "TfoNetworkSecurityGroupId", "AliasList": [], "Type": { "Namespace": "System", @@ -8049,31 +8064,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryNetworkSecurityGroupId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.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": "EnableAcceleratedNetworkingOnRecovery", + "Name": "EnableAcceleratedNetworkingOnTfo", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", @@ -8097,14 +8088,14 @@ }, { "ParameterMetadata": { - "Name": "RecoveryNicStaticIPAddress", + "Name": "IPConfig", "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.RecoveryServices.SiteRecovery", + "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, - "ElementType": null, + "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -8121,40 +8112,75 @@ }, { "ParameterMetadata": { - "Name": "RecoveryPublicIPAddressId", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "RecoveryLBBackendAddressPoolId", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], "Constructors": [] }, "ValidateSet": [], @@ -8166,10 +8192,306 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "New-ASRVMNicConfig" + ] + }, + { + "VerbName": "New", + "NounName": "AzRecoveryServicesAsrVMNicIPConfig", + "Name": "New-AzRecoveryServicesAsrVMNicIPConfig", + "ClassName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.NewAzureRmAsrVmNicIPConfig", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AzureToAzure", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", + "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IsPrimary": "System.Boolean", + "IsSeletedForFailover": "System.Boolean", + "RecoveryLBBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", + "TfoLBBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", + "IPConfigName": "System.String", + "RecoverySubnetName": "System.String", + "RecoveryStaticIPAddress": "System.String", + "RecoveryPublicIPAddressId": "System.String", + "TfoSubnetName": "System.String", + "TfoStaticIPAddress": "System.String", + "TfoPublicIPAddressId": "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": "IpConfigName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IsSelectedForFailover", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RecoverySubnetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RecoveryStaticIPAddress", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "RecoveryPublicIPAddressId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "RecoveryLBBackendAddressPoolId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TfoSubnetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TfoStaticIPAddress", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "TfoPublicIPAddressId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "TfoLBBackendAddressPoolId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzureToAzure", + "Parameters": [ { "ParameterMetadata": { - "Name": "TfoVMNetworkId", + "Name": "IpConfigName", "AliasList": [], "Type": { "Namespace": "System", @@ -8184,21 +8506,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TfoNicName", + "Name": "IsSelectedForFailover", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8208,7 +8530,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -8217,7 +8539,7 @@ }, { "ParameterMetadata": { - "Name": "TfoNicResourceGroupName", + "Name": "RecoverySubnetName", "AliasList": [], "Type": { "Namespace": "System", @@ -8241,12 +8563,12 @@ }, { "ParameterMetadata": { - "Name": "TfoReuseExistingNic", + "Name": "RecoveryStaticIPAddress", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [], @@ -8256,7 +8578,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -8265,7 +8587,7 @@ }, { "ParameterMetadata": { - "Name": "TfoVMSubnetName", + "Name": "RecoveryPublicIPAddressId", "AliasList": [], "Type": { "Namespace": "System", @@ -8280,7 +8602,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -8289,14 +8611,14 @@ }, { "ParameterMetadata": { - "Name": "TfoNetworkSecurityGroupId", + "Name": "RecoveryLBBackendAddressPoolId", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -8304,7 +8626,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -8313,12 +8635,12 @@ }, { "ParameterMetadata": { - "Name": "EnableAcceleratedNetworkingOnTfo", + "Name": "TfoSubnetName", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [], @@ -8337,7 +8659,7 @@ }, { "ParameterMetadata": { - "Name": "TfoNicStaticIPAddress", + "Name": "TfoStaticIPAddress", "AliasList": [], "Type": { "Namespace": "System", @@ -8376,7 +8698,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -8494,7 +8816,7 @@ } ], "AliasList": [ - "New-ASRVMNicConfig" + "New-ASRVMNicIPConfig" ] }, { @@ -8511,7 +8833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -8579,7 +8901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -8722,7 +9044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -8840,7 +9162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -8982,7 +9304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -9177,7 +9499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -9268,7 +9590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -9335,7 +9657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -9466,7 +9788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -9607,7 +9929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -9778,7 +10100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -9892,7 +10214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -9959,7 +10281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -10026,7 +10348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -10112,7 +10434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -10261,7 +10583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -10359,7 +10681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -10593,7 +10915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -10666,7 +10988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -10807,7 +11129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -10981,7 +11303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -11061,7 +11383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -11174,7 +11496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -11305,7 +11627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -11385,7 +11707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -11457,7 +11779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -11583,7 +11905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -11731,7 +12053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -11809,7 +12131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -11977,7 +12299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -12313,7 +12635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -14071,7 +14393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -14151,7 +14473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -14259,7 +14581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -14385,7 +14707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -14555,7 +14877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -15019,7 +15341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -15237,7 +15559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -15479,7 +15801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -15750,7 +16072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -16129,7 +16451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -16272,7 +16594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -16651,7 +16973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -16801,7 +17123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -16913,7 +17235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -17054,7 +17376,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -17206,7 +17528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -17334,7 +17656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -17515,7 +17837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -17593,7 +17915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -17767,7 +18089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -18023,7 +18345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -18116,7 +18438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -18257,7 +18579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -18385,7 +18707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -18566,7 +18888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -18662,7 +18984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -18729,7 +19051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -18807,7 +19129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -18948,7 +19270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -19021,7 +19343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -19105,7 +19427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -19257,7 +19579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -19330,7 +19652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -19511,7 +19833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -19591,7 +19913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -19724,7 +20046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -19949,7 +20271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -20029,7 +20351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -20216,7 +20538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -20414,7 +20736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -20639,7 +20961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -20754,7 +21076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -20885,7 +21207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -21027,7 +21349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -21145,7 +21467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -21316,7 +21638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -21414,7 +21736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -21547,7 +21869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -21718,7 +22040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -21798,7 +22120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -21917,7 +22239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -22098,7 +22420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -22180,7 +22502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -22277,7 +22599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -22365,7 +22687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -22455,7 +22777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -22475,7 +22797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -22534,7 +22856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -22689,7 +23011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -22818,7 +23140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -22914,7 +23236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -23043,7 +23365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -23139,7 +23461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -23165,7 +23487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -23294,7 +23616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -23390,7 +23712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -23416,7 +23738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -23555,7 +23877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -23970,7 +24292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -24066,7 +24388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24134,7 +24456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24295,7 +24617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -24394,7 +24716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24468,7 +24790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24542,7 +24864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -24634,7 +24956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24759,7 +25081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -24851,7 +25173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24997,7 +25319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", "GenericTypeArguments": [], @@ -25187,7 +25509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -25285,7 +25607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -25473,7 +25795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -25656,7 +25978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -25736,7 +26058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -25874,7 +26196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -26124,7 +26446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -26209,7 +26531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -26370,7 +26692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -26518,7 +26840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -26719,7 +27041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -26826,7 +27148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -26957,7 +27279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -27099,7 +27421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -27217,7 +27539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -27388,7 +27710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -27468,7 +27790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -27579,7 +27901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -27752,7 +28074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -27832,7 +28154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -27961,7 +28283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -28182,7 +28504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -28262,7 +28584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -28360,7 +28682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", "GenericTypeArguments": [], @@ -28437,7 +28759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -28541,7 +28863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", "GenericTypeArguments": [], @@ -28646,7 +28968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -28781,7 +29103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -28859,7 +29181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -28997,7 +29319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -29149,7 +29471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -29277,7 +29599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -29405,7 +29727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -29583,7 +29905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -29733,7 +30055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -29808,7 +30130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", "GenericTypeArguments": [], @@ -29880,7 +30202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -30011,7 +30333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -30105,7 +30427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput", "GenericTypeArguments": [], @@ -30123,7 +30445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -30329,6 +30651,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "RecoveryVirtualMachineScaleSetId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "RecoveryAvailabilitySetId", "AliasList": [], @@ -30347,6 +30687,109 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "Size", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SqlServerLicenseType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "NoLicenseType", + "PAYG", + "AHUB" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RecoveryVmTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DiskTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RecoveryNicTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "UseManagedDisk", "AliasList": [], @@ -30581,7 +31024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -30686,7 +31129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -30769,99 +31212,243 @@ }, { "ParameterMetadata": { - "Name": "ProcessServer", + "Name": "ProcessServer", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", + "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", + "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", + "LastHeartbeat": "System.Nullable`1[System.DateTime]", + "AvailableMemoryInBytes": "System.Nullable`1[System.Int64]", + "AvailableSpaceInBytes": "System.Nullable`1[System.Int64]", + "ThroughputInBytes": "System.Nullable`1[System.Int64]", + "ThroughputInMBps": "System.Nullable`1[System.Int64]", + "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]", + "TotalSpaceInBytes": "System.Nullable`1[System.Int64]", + "TotalMemoryInBytes": "System.Nullable`1[System.Int64]", + "AgentVersion": "System.String", + "ThroughputStatus": "System.String", + "Health": "System.String", + "VersionStatus": "System.String", + "SystemLoadStatus": "System.String", + "SystemLoad": "System.String", + "ServerCount": "System.String", + "MarsCommunicationStatus": "System.String", + "ReplicationPairCount": "System.String", + "PsServiceStatus": "System.String", + "OsType": "System.String", + "MemoryUsageStatus": "System.String", + "IpAddress": "System.String", + "Id": "System.String", + "HostId": "System.String", + "FriendlyName": "System.String", + "CpuLoadStatus": "System.String", + "CpuLoad": "System.String", + "SpaceUsageStatus": "System.String", + "MarsRegistrationStatus": "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": "processServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RecoveryAzureNetworkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryAzureSubnetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryResourceGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ReplicationGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryAvailabilityZone", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryProximityPlacementGroupId", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", - "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", - "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", - "LastHeartbeat": "System.Nullable`1[System.DateTime]", - "AvailableMemoryInBytes": "System.Nullable`1[System.Int64]", - "AvailableSpaceInBytes": "System.Nullable`1[System.Int64]", - "ThroughputInBytes": "System.Nullable`1[System.Int64]", - "ThroughputInMBps": "System.Nullable`1[System.Int64]", - "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]", - "TotalSpaceInBytes": "System.Nullable`1[System.Int64]", - "TotalMemoryInBytes": "System.Nullable`1[System.Int64]", - "AgentVersion": "System.String", - "ThroughputStatus": "System.String", - "Health": "System.String", - "VersionStatus": "System.String", - "SystemLoadStatus": "System.String", - "SystemLoad": "System.String", - "ServerCount": "System.String", - "MarsCommunicationStatus": "System.String", - "ReplicationPairCount": "System.String", - "PsServiceStatus": "System.String", - "OsType": "System.String", - "MemoryUsageStatus": "System.String", - "IpAddress": "System.String", - "Id": "System.String", - "HostId": "System.String", - "FriendlyName": "System.String", - "CpuLoadStatus": "System.String", - "CpuLoad": "System.String", - "SpaceUsageStatus": "System.String", - "MarsRegistrationStatus": "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": [ - { - "Name": "processServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Methods": [], + "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RecoveryAzureNetworkId", + "Name": "RecoveryAvailabilitySetId", "AliasList": [], "Type": { "Namespace": "System", @@ -30885,7 +31472,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryAzureSubnetName", + "Name": "Size", "AliasList": [], "Type": { "Namespace": "System", @@ -30909,7 +31496,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryResourceGroupId", + "Name": "SqlServerLicenseType", "AliasList": [], "Type": { "Namespace": "System", @@ -30921,27 +31508,34 @@ "Methods": [], "Constructors": [] }, - "ValidateSet": [], + "ValidateSet": [ + "NoLicenseType", + "PAYG", + "AHUB" + ], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ReplicationGroupName", + "Name": "RecoveryVmTag", "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.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "System.String", + "System.String" + ], "Methods": [], "Constructors": [] }, @@ -30957,15 +31551,18 @@ }, { "ParameterMetadata": { - "Name": "RecoveryAvailabilityZone", + "Name": "DiskTag", "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.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "System.String", + "System.String" + ], "Methods": [], "Constructors": [] }, @@ -30981,15 +31578,18 @@ }, { "ParameterMetadata": { - "Name": "RecoveryProximityPlacementGroupId", + "Name": "RecoveryNicTag", "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.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "System.String", + "System.String" + ], "Methods": [], "Constructors": [] }, @@ -31082,7 +31682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -31281,7 +31881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -31386,7 +31986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -31474,7 +32074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput", "GenericTypeArguments": [], @@ -31498,7 +32098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -31633,7 +32233,151 @@ }, { "ParameterMetadata": { - "Name": "RecoveryResourceGroupId", + "Name": "RecoveryResourceGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ReplicationGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryAvailabilityZone", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryProximityPlacementGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryAvailabilitySetId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Size", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SqlServerLicenseType", "AliasList": [], "Type": { "Namespace": "System", @@ -31645,27 +32389,34 @@ "Methods": [], "Constructors": [] }, - "ValidateSet": [], + "ValidateSet": [ + "NoLicenseType", + "PAYG", + "AHUB" + ], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ReplicationGroupName", + "Name": "RecoveryVmTag", "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.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "System.String", + "System.String" + ], "Methods": [], "Constructors": [] }, @@ -31681,15 +32432,18 @@ }, { "ParameterMetadata": { - "Name": "RecoveryAvailabilityZone", + "Name": "DiskTag", "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.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "System.String", + "System.String" + ], "Methods": [], "Constructors": [] }, @@ -31705,15 +32459,18 @@ }, { "ParameterMetadata": { - "Name": "RecoveryProximityPlacementGroupId", + "Name": "RecoveryNicTag", "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.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "System.String", + "System.String" + ], "Methods": [], "Constructors": [] }, @@ -31782,7 +32539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -31981,7 +32738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -32158,7 +32915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -32357,7 +33114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -32698,6 +33455,163 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RecoveryAvailabilitySetId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Size", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "SqlServerLicenseType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "NoLicenseType", + "PAYG", + "AHUB" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RecoveryVmTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DiskTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RecoveryNicTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "UseManagedDisk", @@ -32756,7 +33670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -32928,7 +33842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -33033,7 +33947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -33232,7 +34146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", "GenericTypeArguments": [], @@ -33465,6 +34379,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RecoveryVirtualMachineScaleSetId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryAvailabilitySetId", @@ -33640,7 +34578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -33766,56 +34704,80 @@ }, { "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": "AzureToAzureWithoutDiskDetails", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AzureToAzure", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "AzureToAzureWithoutDiskDetails", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureToAzure", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AzureVmId", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [], @@ -33825,16 +34787,16 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AzureVmId", + "Name": "RecoveryVmName", "AliasList": [], "Type": { "Namespace": "System", @@ -33851,14 +34813,14 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RecoveryVmName", + "Name": "RecoveryAzureStorageAccountId", "AliasList": [], "Type": { "Namespace": "System", @@ -33882,7 +34844,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryAzureStorageAccountId", + "Name": "LogStorageAccountId", "AliasList": [], "Type": { "Namespace": "System", @@ -33899,14 +34861,14 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LogStorageAccountId", + "Name": "RecoveryAzureNetworkId", "AliasList": [], "Type": { "Namespace": "System", @@ -33923,14 +34885,14 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RecoveryAzureNetworkId", + "Name": "RecoveryAzureSubnetName", "AliasList": [], "Type": { "Namespace": "System", @@ -33954,7 +34916,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryAzureSubnetName", + "Name": "RecoveryResourceGroupId", "AliasList": [], "Type": { "Namespace": "System", @@ -33971,14 +34933,14 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RecoveryResourceGroupId", + "Name": "ReplicationGroupName", "AliasList": [], "Type": { "Namespace": "System", @@ -33995,14 +34957,14 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ReplicationGroupName", + "Name": "RecoveryAvailabilityZone", "AliasList": [], "Type": { "Namespace": "System", @@ -34026,7 +34988,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryAvailabilityZone", + "Name": "RecoveryProximityPlacementGroupId", "AliasList": [], "Type": { "Namespace": "System", @@ -34050,7 +35012,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryProximityPlacementGroupId", + "Name": "RecoveryVirtualMachineScaleSetId", "AliasList": [], "Type": { "Namespace": "System", @@ -34247,7 +35209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -34446,7 +35408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -34630,7 +35592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -34710,7 +35672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -34885,7 +35847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -35182,7 +36144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -35262,7 +36224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -35437,7 +36399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -35611,7 +36573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -35785,7 +36747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -35942,7 +36904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -36022,7 +36984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -36336,6 +37298,91 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "SqlServerLicenseType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "NoLicenseType", + "PAYG", + "AHUB" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RecoveryVmTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DiskTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RecoveryNicTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "RecoveryAvailabilityZone", "AliasList": [], @@ -36372,6 +37419,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "RecoveryVirtualMachineScaleSetId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "EnableAcceleratedNetworkingOnRecovery", "AliasList": [], @@ -36414,7 +37479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", "GenericTypeArguments": [], @@ -36618,7 +37683,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig", "GenericTypeArguments": [], @@ -36677,7 +37742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -36920,7 +37985,106 @@ }, { "ParameterMetadata": { - "Name": "RecoveryNicSubnetName", + "Name": "RecoveryNicSubnetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryNicStaticIPAddress", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "NicSelectionType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "NotSelected", + "SelectedByUser" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RecoveryResourceGroupId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "LicenseType", "AliasList": [], "Type": { "Namespace": "System", @@ -36932,7 +38096,10 @@ "Methods": [], "Constructors": [] }, - "ValidateSet": [], + "ValidateSet": [ + "NoLicenseType", + "WindowsServer" + ], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true @@ -36944,7 +38111,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryNicStaticIPAddress", + "Name": "RecoveryAvailabilitySet", "AliasList": [], "Type": { "Namespace": "System", @@ -36959,7 +38126,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -36968,7 +38135,7 @@ }, { "ParameterMetadata": { - "Name": "NicSelectionType", + "Name": "SqlServerLicenseType", "AliasList": [], "Type": { "Namespace": "System", @@ -36981,8 +38148,9 @@ "Constructors": [] }, "ValidateSet": [ - "NotSelected", - "SelectedByUser" + "NoLicenseType", + "PAYG", + "AHUB" ], "ValidateRangeMin": null, "ValidateRangeMax": null, @@ -36995,22 +38163,25 @@ }, { "ParameterMetadata": { - "Name": "RecoveryResourceGroupId", + "Name": "RecoveryVmTag", "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.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "System.String", + "System.String" + ], "Methods": [], "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -37019,25 +38190,25 @@ }, { "ParameterMetadata": { - "Name": "LicenseType", + "Name": "DiskTag", "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.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "System.String", + "System.String" + ], "Methods": [], "Constructors": [] }, - "ValidateSet": [ - "NoLicenseType", - "WindowsServer" - ], + "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -37046,7 +38217,34 @@ }, { "ParameterMetadata": { - "Name": "RecoveryAvailabilitySet", + "Name": "RecoveryNicTag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RecoveryAvailabilityZone", "AliasList": [], "Type": { "Namespace": "System", @@ -37070,7 +38268,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryAvailabilityZone", + "Name": "RecoveryProximityPlacementGroupId", "AliasList": [], "Type": { "Namespace": "System", @@ -37094,7 +38292,7 @@ }, { "ParameterMetadata": { - "Name": "RecoveryProximityPlacementGroupId", + "Name": "RecoveryVirtualMachineScaleSetId", "AliasList": [], "Type": { "Namespace": "System", @@ -37171,7 +38369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", "GenericTypeArguments": [], @@ -37441,7 +38639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig", "GenericTypeArguments": [], @@ -37522,7 +38720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -37600,7 +38798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -37666,7 +38864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -37839,7 +39037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -37911,7 +39109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -38208,7 +39406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -38286,7 +39484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -38365,7 +39563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -38502,7 +39700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -38631,7 +39829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -38833,7 +40031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -38911,7 +40109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -38990,7 +40188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -39151,7 +40349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -39296,7 +40494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -39554,7 +40752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -39658,7 +40856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -40090,7 +41288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -40186,7 +41384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -40391,7 +41589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -40593,7 +41791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -40689,7 +41887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -40768,7 +41966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -41015,7 +42213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -41168,7 +42366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -41393,7 +42591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -41471,7 +42669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -41550,7 +42748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -41669,7 +42867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -41811,7 +43009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -41938,7 +43136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -42197,7 +43395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -42282,7 +43480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -42502,7 +43700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -42785,7 +43983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -42916,7 +44114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -43107,7 +44305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -43211,7 +44409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -43284,7 +44482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -43475,7 +44673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -43630,7 +44828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -43950,7 +45148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -44028,7 +45226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -44107,7 +45305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -44282,7 +45480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -44410,7 +45608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -44669,7 +45867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -44773,7 +45971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -44990,7 +46188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -45423,7 +46621,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -45501,7 +46699,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -45559,7 +46757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -45696,7 +46894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -45760,7 +46958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -45961,7 +47159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -46129,7 +47327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -46187,7 +47385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.String", "FreeSpace": "System.String", @@ -46247,7 +47445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]", "RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]", @@ -46312,7 +47510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -46398,7 +47596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -46508,7 +47706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", "GenericTypeArguments": [], @@ -46526,7 +47724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -46605,7 +47803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -46790,6 +47988,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "RecoveryVirtualMachineScaleSetId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "RecoveryBootDiagStorageAccountId", "AliasList": [], @@ -46814,7 +48030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThresholdPercentage": "System.Nullable`1[System.Int32]", "CapacityInBytes": "System.Nullable`1[System.Int64]", @@ -47009,7 +48225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -47073,7 +48289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.String", "FreeSpace": "System.String", @@ -47139,7 +48355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]", "RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]", @@ -47210,7 +48426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -47302,7 +48518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -47382,7 +48598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -47513,7 +48729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThresholdPercentage": "System.Nullable`1[System.Int32]", "CapacityInBytes": "System.Nullable`1[System.Int64]", @@ -47647,7 +48863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -47711,7 +48927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]", "RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]", @@ -47782,7 +48998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -47874,7 +49090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -48002,7 +49218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -48249,7 +49465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -48448,7 +49664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -48647,7 +49863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -48775,7 +49991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -48968,6 +50184,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RecoveryVirtualMachineScaleSetId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryBootDiagStorageAccountId", @@ -49163,7 +50403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -49243,7 +50483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", "GenericTypeArguments": [], @@ -49267,7 +50507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -49460,6 +50700,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RecoveryVirtualMachineScaleSetId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "RecoveryBootDiagStorageAccountId", @@ -49631,7 +50895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -49787,7 +51051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -50086,7 +51350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -50177,7 +51441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -50308,7 +51572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -50450,7 +51714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -50568,7 +51832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -50739,7 +52003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -50813,7 +52077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -50930,7 +52194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -51034,7 +52298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -51191,7 +52455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -51287,7 +52551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -51341,7 +52605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -51458,7 +52722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -51518,7 +52782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -51675,7 +52939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -51755,7 +53019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -51851,7 +53115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -52009,7 +53273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceName": "System.String", "ResourceGroupName": "System.String", @@ -52169,7 +53433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceName": "System.String", "ResourceGroupName": "System.String", @@ -52369,7 +53633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceName": "System.String", "ResourceGroupName": "System.String", @@ -52435,7 +53699,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -52543,7 +53807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -52717,7 +53981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -52807,7 +54071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -53000,7 +54264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -53142,7 +54406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -53313,7 +54577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -53391,7 +54655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -53477,7 +54741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -53610,7 +54874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -53708,7 +54972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -53877,7 +55141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -53975,7 +55239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -54046,7 +55310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -54241,7 +55505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -54362,7 +55626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -54557,7 +55821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -54655,7 +55919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -54726,7 +55990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -54913,7 +56177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -54990,7 +56254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -55509,7 +56773,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderType": "System.String" }, @@ -55547,7 +56811,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55594,7 +56858,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -55606,7 +56870,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTimeUtc": "System.String", "EntityId": "System.String", @@ -55672,7 +56936,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55714,7 +56978,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -55726,7 +56990,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderErrorDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError", "ServiceErrorDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError", @@ -55772,7 +57036,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTimeUtc": "System.DateTime", "ErrorCode": "System.Int32", @@ -55829,7 +57093,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Code": "System.String", "Message": "System.String", @@ -55887,7 +57151,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -55899,7 +57163,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GroupTaskDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails", "EndTime": "System.DateTime", @@ -55959,7 +57223,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String" }, @@ -56037,7 +57301,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56049,7 +57313,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsType": "System.String", "RebootStatus": "System.String", @@ -56112,7 +57376,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -56202,7 +57466,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56244,7 +57508,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartTime": "System.Nullable`1[System.DateTime]", "JobId": "System.String", @@ -56308,7 +57572,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56320,35 +57584,26 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "TfoIPConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]", - "RecoveryLBBackendAddressPoolId": "System.Collections.Generic.List`1[System.String]", - "EnableAcceleratedNetworkingOnTfo": "System.Nullable`1[System.Boolean]", + "IpConfigs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails]", "EnableAcceleratedNetworkingOnRecovery": "System.Nullable`1[System.Boolean]", "TfoReuseExistingNic": "System.Nullable`1[System.Boolean]", "ReuseExistingNic": "System.Nullable`1[System.Boolean]", - "TfoNetworkSecurityGroupId": "System.String", - "TfoVMSubnetName": "System.String", - "TfoNicResourceGroupName": "System.String", - "TfoNicName": "System.String", - "TfoVMNetworkId": "System.String", - "RecoveryNetworkSecurityGroupId": "System.String", - "RecoveryPublicIPAddressId": "System.String", - "VMSubnetName": "System.String", - "SelectionType": "System.String", - "ReplicaNicStaticIPAddress": "System.String", - "RecoveryVMSubnetName": "System.String", - "RecoveryVMNetworkId": "System.String", + "EnableAcceleratedNetworkingOnTfo": "System.Nullable`1[System.Boolean]", "RecoveryNicResourceGroupName": "System.String", - "RecoveryNicName": "System.String", "NicId": "System.String", - "IpAddressType": "System.String", + "RecoveryVMNetworkId": "System.String", "SourceNicArmId": "System.String", - "ReplicaNicId": "System.String", - "RecoveryNicIpAddressType": "System.String", "VMNetworkName": "System.String", - "PrimaryNicStaticIPAddress": "System.String" + "RecoveryNetworkSecurityGroupId": "System.String", + "TfoVMNetworkId": "System.String", + "TfoNicName": "System.String", + "TfoNicResourceGroupName": "System.String", + "ReplicaNicId": "System.String", + "TfoNetworkSecurityGroupId": "System.String", + "RecoveryNicName": "System.String", + "SelectionType": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -56397,26 +57652,38 @@ } ] }, - "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig" + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig": { + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", - "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LBBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", - "PublicIpAddressId": "System.String", - "StaticIPAddress": "System.String" + "RecoveryLBBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", + "TfoLBBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", + "IsPrimary": "System.Nullable`1[System.Boolean]", + "IsSeletedForFailover": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "SubnetName": "System.String", + "StaticIPAddress": "System.String", + "IpAddressType": "System.String", + "RecoverySubnetName": "System.String", + "RecoveryStaticIPAddress": "System.String", + "RecoveryIPAddressType": "System.String", + "RecoveryPublicIPAddressId": "System.String", + "TfoSubnetName": "System.String", + "TfoStaticIPAddress": "System.String", + "TfoPublicIPAddressId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -56457,16 +57724,64 @@ "Name": "", "ReturnType": null, "Parameters": [ + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "isPrimary", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "subnetName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "staticIPAddress", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "publicIpAddressId", + "Name": "ipAddressType", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "isSeletedForFailover", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "recoverySubnetName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "recoveryStaticIPAddress", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "recoveryIPAddressType", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "lBBackendAddressPoolIds", + "Name": "recoveryPublicIPAddressId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "recoveryLBBackendAddressPoolIds", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tfoSubnetName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tfoStaticIPAddress", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tfoPublicIPAddressId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tfoLBBackendAddressPoolIds", "Type": "System.Reflection.RuntimeParameterInfo" } ] @@ -56485,10 +57800,76 @@ "Methods": [], "Constructors": [] }, + "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails": { + "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", + "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IsPrimary": "System.Boolean", + "IsSeletedForFailover": "System.Boolean", + "RecoveryLBBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", + "TfoLBBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", + "IPConfigName": "System.String", + "RecoverySubnetName": "System.String", + "RecoveryStaticIPAddress": "System.String", + "RecoveryPublicIPAddressId": "System.String", + "TfoSubnetName": "System.String", + "TfoStaticIPAddress": "System.String", + "TfoPublicIPAddressId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56500,7 +57881,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressList": "System.Collections.Generic.IList`1[System.String]", "FriendlyName": "System.String", @@ -56564,7 +57945,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56610,7 +57991,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56662,7 +58043,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56704,7 +58085,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56716,7 +58097,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Volumes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]", "Capacity": "System.Int64", @@ -56763,7 +58144,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56775,7 +58156,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Label": "System.String", "Name": "System.String" @@ -56820,7 +58201,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56832,7 +58213,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -56891,7 +58272,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56903,7 +58284,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -56969,7 +58350,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57011,7 +58392,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57023,7 +58404,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -57103,7 +58484,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57115,7 +58496,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails", "FailoverTypes": "System.Collections.Generic.IList`1[System.String]", @@ -57177,7 +58558,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57219,7 +58600,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomDetails": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails", "FailoverTypes": "System.Collections.Generic.IList`1[System.String]", @@ -57293,7 +58674,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57335,7 +58716,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57347,7 +58728,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57359,7 +58740,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrimaryZone": "System.String", "RecoveryZone": "System.String" @@ -57413,7 +58794,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -57484,7 +58865,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsManagedDisk": "System.Boolean", "VhdUri": "System.String", @@ -57537,7 +58918,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskId": "System.String", "LogStorageAccountId": "System.String", @@ -57584,25 +58965,22 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "ReuseExistingNic": "System.Boolean", "EnableAcceleratedNetworkingOnRecovery": "System.Boolean", "TfoReuseExistingNic": "System.Boolean", - "ReuseExistingNic": "System.Boolean", "EnableAcceleratedNetworkingOnTfo": "System.Boolean", - "RecoveryIPConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]", - "TfoIPConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]", + "IPConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails]", + "NicId": "System.String", + "RecoveryVMNetworkId": "System.String", "RecoveryNicName": "System.String", - "RecoveryVMSubnetName": "System.String", + "RecoveryNicResourceGroupName": "System.String", "RecoveryNetworkSecurityGroupId": "System.String", "TfoVMNetworkId": "System.String", "TfoNicName": "System.String", "TfoNicResourceGroupName": "System.String", - "RecoveryVMNetworkId": "System.String", - "TfoVMSubnetName": "System.String", - "TfoNetworkSecurityGroupId": "System.String", - "RecoveryNicResourceGroupName": "System.String", - "NicId": "System.String" + "TfoNetworkSecurityGroupId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -57644,7 +59022,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57656,7 +59034,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.String", "FreeSpace": "System.String", @@ -57708,7 +59086,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57720,7 +59098,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThresholdPercentage": "System.Nullable`1[System.Int32]", "CapacityInBytes": "System.Nullable`1[System.Int64]", @@ -57784,7 +59162,7 @@ "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.String", "PrivateEndpointStateForBackup": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json index 9f251134c053..97122481f929 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CrossRegionRestore": "System.Boolean", "BackupStorageRedundancy": "System.String" @@ -68,7 +68,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -176,7 +176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -304,7 +304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -858,7 +858,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FilePath": "System.String" }, @@ -911,7 +911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -1127,7 +1127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -1366,7 +1366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -1557,7 +1557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -1748,7 +1748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -1898,7 +1898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -2226,7 +2226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Response": "System.String" }, @@ -2279,7 +2279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -2387,7 +2387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -2532,7 +2532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -2601,7 +2601,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -2678,7 +2678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -2753,7 +2753,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -2875,7 +2875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -2983,7 +2983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -3109,7 +3109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -3215,7 +3215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3408,7 +3408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3712,7 +3712,7 @@ "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.String", "PrivateEndpointStateForBackup": "System.String", @@ -4018,7 +4018,7 @@ "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json index a7b285f42873..8bac175164d6 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 @@ -665,7 +665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity", @@ -1115,7 +1115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLog", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLog, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLog, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Log": "System.String", "DeploymentScriptName": "System.String", @@ -1228,7 +1228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity", @@ -1568,7 +1568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity", @@ -1766,7 +1766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLogPath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLogPath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLogPath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Path": "System.String" }, @@ -1875,7 +1875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity", @@ -2347,7 +2347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity", @@ -2617,7 +2617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -3091,7 +3091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusMessage": "System.Object", "Id": "System.String", @@ -3203,7 +3203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -3469,7 +3469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -3687,7 +3687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse", "Changes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]", @@ -9887,7 +9887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -10321,7 +10321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusMessage": "System.Object", "Id": "System.String", @@ -10415,7 +10415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -10657,7 +10657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -10877,7 +10877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse", "Changes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]", @@ -16653,7 +16653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -17085,7 +17085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusMessage": "System.Object", "Id": "System.String", @@ -17179,7 +17179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -17421,7 +17421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -17639,7 +17639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse", "Changes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]", @@ -23413,7 +23413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -31327,7 +31327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -38817,7 +38817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -46383,7 +46383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -46854,7 +46854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -47228,7 +47228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -47675,7 +47675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -48051,7 +48051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -48498,7 +48498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -48812,7 +48812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Path": "System.String" }, @@ -48903,7 +48903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -49231,7 +49231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -49545,7 +49545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Path": "System.String" }, @@ -49618,7 +49618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -49922,7 +49922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -50238,7 +50238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Path": "System.String" }, @@ -50311,7 +50311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -50615,7 +50615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -51007,7 +51007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -51412,7 +51412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -51738,7 +51738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -52119,7 +52119,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -52447,7 +52447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -52828,7 +52828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -53094,7 +53094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]", "Code": "System.String", @@ -56872,7 +56872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]", "Code": "System.String", @@ -60226,7 +60226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]", "Code": "System.String", @@ -63578,7 +63578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FeatureName": "System.String", "ProviderName": "System.String", @@ -63961,7 +63961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FeatureName": "System.String", "ProviderName": "System.String", @@ -64190,7 +64190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FeatureName": "System.String", "ProviderName": "System.String", @@ -64419,7 +64419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Providers": "System.Collections.Generic.List`1[System.String]", "DisplayName": "System.String", @@ -66065,7 +66065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -66427,7 +66427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -66779,7 +66779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -67083,7 +67083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -67363,7 +67363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -67691,7 +67691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -67944,7 +67944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -68224,7 +68224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -69899,7 +69899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -70261,7 +70261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -70613,7 +70613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -70917,7 +70917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71197,7 +71197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71525,7 +71525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71778,7 +71778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72058,7 +72058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -73465,7 +73465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -73827,7 +73827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -74198,7 +74198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -74590,7 +74590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -78142,7 +78142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.PsResourceProviderAlias", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.PsResourceProviderAlias, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.PsResourceProviderAlias, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Aliases": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.Alias]", "Locations": "System.Collections.Generic.IList`1[System.String]", @@ -78695,7 +78695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -79479,7 +79479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -80677,7 +80677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties", "SystemData": "System.Management.Automation.PSObject", @@ -81454,7 +81454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -82652,7 +82652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -82810,7 +82810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -82873,7 +82873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -82990,7 +82990,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -83241,7 +83241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -83310,7 +83310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -83403,7 +83403,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -83569,7 +83569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -83638,7 +83638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -83851,7 +83851,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -84017,7 +84017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -84230,7 +84230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -84323,7 +84323,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -84489,7 +84489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -84702,7 +84702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -84795,7 +84795,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -84961,7 +84961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -85174,7 +85174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -85267,7 +85267,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -85433,7 +85433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -85646,7 +85646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -85739,7 +85739,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -85912,7 +85912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -87056,7 +87056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties", "SystemData": "System.Management.Automation.PSObject", @@ -87214,7 +87214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -87535,7 +87535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -87785,7 +87785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -89004,7 +89004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -89404,7 +89404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -89781,7 +89781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -90647,7 +90647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -90932,7 +90932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties", "SystemData": "System.Management.Automation.PSObject", @@ -91493,7 +91493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties", "SystemData": "System.Management.Automation.PSObject", @@ -91799,7 +91799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -92665,7 +92665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -92857,7 +92857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -93125,7 +93125,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -93145,7 +93145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -93479,7 +93479,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -93813,7 +93813,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -94147,7 +94147,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -94409,7 +94409,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -94697,7 +94697,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -95009,7 +95009,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -95321,7 +95321,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -95439,7 +95439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", "Identity": "System.Management.Automation.PSObject", @@ -95656,7 +95656,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -95781,7 +95781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -96029,7 +96029,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -97495,7 +97495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", "Name": "System.String", @@ -97807,7 +97807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties", "SystemData": "System.Management.Automation.PSObject", @@ -98059,7 +98059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties", "SystemData": "System.Management.Automation.PSObject", @@ -99067,7 +99067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemption, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties", "SystemData": "System.Management.Automation.PSObject", @@ -99409,7 +99409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -99639,7 +99639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -101123,7 +101123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", "Name": "System.String", @@ -101435,7 +101435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceTypes": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]", "ZoneMappings": "System.Collections.Hashtable", @@ -102024,7 +102024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceTypes": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]", "ZoneMappings": "System.Collections.Hashtable", @@ -102297,7 +102297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceTypes": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]", "ZoneMappings": "System.Collections.Hashtable", @@ -102570,7 +102570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -103041,7 +103041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusMessage": "System.Object", "Id": "System.String", @@ -103319,7 +103319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse", "Changes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]", @@ -111049,7 +111049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode", "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended", @@ -123031,7 +123031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]", "Code": "System.String", @@ -129724,7 +129724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -130367,7 +130367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -130776,7 +130776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -131385,7 +131385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.ResourceManager.Models.Identity", "Plan": "Microsoft.Azure.Management.ResourceManager.Models.Plan", @@ -137514,7 +137514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.ResourceManager.Models.Identity", "Plan": "Microsoft.Azure.Management.ResourceManager.Models.Plan", @@ -137988,7 +137988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.ResourceManager.Models.Identity", "Plan": "Microsoft.Azure.Management.ResourceManager.Models.Plan", @@ -140457,7 +140457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Versions": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -140963,7 +140963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Versions": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -142570,7 +142570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Versions": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -144348,7 +144348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity", @@ -144478,7 +144478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity", @@ -144818,7 +144818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity", @@ -145362,7 +145362,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse", "StartTime": "System.Nullable`1[System.DateTime]", @@ -146190,7 +146190,7 @@ "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]", - "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.ResourceManager.Cmdlets.SdkModels.DeploymentVariable, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -146203,7 +146203,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Object", "Type": "System.String" @@ -146248,7 +146248,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -146260,7 +146260,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ChangeType": "Microsoft.Azure.Management.ResourceManager.Models.ChangeType", "Before": "Newtonsoft.Json.Linq.JToken", @@ -150265,7 +150265,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -150277,7 +150277,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropertyChangeType": "Microsoft.Azure.Management.ResourceManager.Models.PropertyChangeType", "Before": "Newtonsoft.Json.Linq.JToken", @@ -150425,7 +150425,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -150437,7 +150437,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]", "Code": "System.String", @@ -151005,7 +151005,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Management.Automation.PSObject", "Parameters": "System.Management.Automation.PSObject", @@ -151076,7 +151076,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -151088,7 +151088,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151193,7 +151193,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyType": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType", "Metadata": "System.Management.Automation.PSObject", @@ -151263,7 +151263,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151368,7 +151368,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyExemptionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Management.Automation.PSObject", "ExpiresOn": "System.Nullable`1[System.DateTime]", @@ -151428,7 +151428,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyType": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType", "Metadata": "System.Management.Automation.PSObject", @@ -151488,7 +151488,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151583,7 +151583,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[], Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[], Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType", "GenericTypeArguments": [], @@ -151593,7 +151593,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ZoneMappings": "System.Collections.Hashtable", "ResourceTypeName": "System.String", @@ -152051,7 +152051,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[], Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[], Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion", "GenericTypeArguments": [], @@ -152061,7 +152061,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Artifacts": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact]", @@ -152112,7 +152112,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -152124,7 +152124,7 @@ "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact": { "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels", "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Path": "System.String" }, 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 f83a334cd264..a9ed953a7785 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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -5344,7 +5344,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -5627,6 +5627,26 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "RoleDefinitionId", "AliasList": [], @@ -5866,6 +5886,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -6153,6 +6199,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -6368,6 +6440,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -6559,6 +6657,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "RoleDefinitionId", @@ -6798,6 +6922,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -7085,6 +7235,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -7300,6 +7476,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -7515,6 +7717,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -7802,6 +8030,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -8017,6 +8271,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ObjectType", + "AliasList": [ + "PrincipalType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AllowDelegation", @@ -8259,7 +8539,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -8529,7 +8809,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -10485,7 +10765,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -10629,7 +10909,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -10711,7 +10991,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -10923,7 +11203,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -11135,7 +11415,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -11634,7 +11914,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -11713,7 +11993,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -11880,7 +12160,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -12096,7 +12376,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -12529,7 +12809,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -12786,7 +13066,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -12865,7 +13145,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -13032,7 +13312,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -13193,7 +13473,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Type": "System.String", @@ -13256,7 +13536,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -13597,7 +13877,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -13759,7 +14039,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -14005,7 +14285,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -14480,7 +14760,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -14629,7 +14909,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -15203,7 +15483,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -15276,7 +15556,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -15437,7 +15717,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -15515,7 +15795,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -15617,7 +15897,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -15739,7 +16019,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -15959,7 +16239,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -16323,7 +16603,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -16596,7 +16876,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -16984,7 +17264,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -17307,7 +17587,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -17417,7 +17697,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -17721,7 +18001,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -17883,7 +18163,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -18469,7 +18749,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -18948,7 +19228,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisplayName": "System.String", "Id": "System.String", @@ -19042,7 +19322,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -19278,7 +19558,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -19437,7 +19717,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -19569,7 +19849,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -19963,7 +20243,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -20199,7 +20479,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -20311,7 +20591,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -20613,7 +20893,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -20773,7 +21053,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountEnabled": "System.Nullable`1[System.Boolean]", "UserPrincipalName": "System.String", @@ -21434,7 +21714,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -21544,7 +21824,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -22556,7 +22836,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -22739,7 +23019,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -23021,7 +23301,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -23173,7 +23453,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -23191,7 +23471,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -23840,7 +24120,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -24264,7 +24544,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -24383,7 +24663,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -24658,7 +24938,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -24712,7 +24992,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "Secret": "System.Security.SecureString", @@ -24812,7 +25092,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -24875,7 +25155,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -24895,7 +25175,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -25270,7 +25550,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -25504,7 +25784,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -25994,7 +26274,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -26228,7 +26508,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -26296,7 +26576,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -26455,7 +26735,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -26524,7 +26804,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -26592,7 +26872,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -26775,7 +27055,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -26844,7 +27124,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -26963,7 +27243,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -27015,7 +27295,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Secret": "System.Security.SecureString", "StartDate": "System.String", @@ -27117,7 +27397,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -27787,7 +28067,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -27966,7 +28246,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -28222,7 +28502,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountEnabled": "System.Nullable`1[System.Boolean]", "UserPrincipalName": "System.String", @@ -28718,7 +28998,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -29274,7 +29554,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -29605,7 +29885,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -30089,7 +30369,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -30402,7 +30682,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -30767,7 +31047,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -31113,7 +31393,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -31368,7 +31648,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -31756,7 +32036,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -32083,7 +32363,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -32218,7 +32498,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -32275,7 +32555,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -32880,7 +33160,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -33035,7 +33315,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -33366,7 +33646,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -33912,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -34285,7 +34565,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountEnabled": "System.Nullable`1[System.Boolean]", "UserPrincipalName": "System.String", @@ -34888,7 +35168,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountEnabled": "System.Nullable`1[System.Boolean]", "UserPrincipalName": "System.String", @@ -35147,7 +35427,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -35245,7 +35525,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -35823,7 +36103,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -36111,7 +36391,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -36227,7 +36507,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -36957,7 +37237,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -37333,7 +37613,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountEnabled": "System.Nullable`1[System.Boolean]", "UserPrincipalName": "System.String", @@ -37452,7 +37732,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountEnabled": "System.Nullable`1[System.Boolean]", "UserPrincipalName": "System.String", @@ -38127,7 +38407,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountEnabled": "System.Nullable`1[System.Boolean]", "UserPrincipalName": "System.String", @@ -38521,7 +38801,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38533,7 +38813,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ObjectId": "System.Guid", "ObjectType": "System.String", @@ -38660,6 +38940,8 @@ "Properties": { "OnPremise": "System.Boolean", "VersionProfiles": "System.Collections.Generic.IList`1[System.String]", + "Name": "System.String", + "AdTenant": "System.String", "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String", "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String", "BatchEndpointResourceId": "System.String", @@ -38669,7 +38951,6 @@ "AzureKeyVaultDnsSuffix": "System.String", "TrafficManagerDnsSuffix": "System.String", "SqlDatabaseDnsSuffix": "System.String", - "StorageEndpointSuffix": "System.String", "ActiveDirectoryServiceEndpointResourceId": "System.String", "GraphUrl": "System.String", "GalleryUrl": "System.String", @@ -38678,8 +38959,8 @@ "ManagementPortalUrl": "System.String", "ResourceManagerUrl": "System.String", "ServiceManagementUrl": "System.String", - "AdTenant": "System.String", - "Name": "System.String" + "StorageEndpointSuffix": "System.String", + "ContainerRegistryEndpointSuffix": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -38801,7 +39082,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38813,7 +39094,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "Type": "System.String", @@ -38915,7 +39196,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartDate": "System.DateTime", "EndDate": "System.DateTime", @@ -38962,7 +39243,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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartDate": "System.DateTime", "EndDate": "System.DateTime", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Security.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Security.dll.json index 1f86af3ab3fd..1e27ced0b311 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Security.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Security.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -104,7 +104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -788,7 +788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -987,7 +987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -1309,7 +1309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -2015,7 +2015,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentScanResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentScanResult, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentScanResult, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaselineAdjustedResult": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineAdjustedResult", "Remediation": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRemediation", @@ -2832,7 +2832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -3600,7 +3600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -3850,7 +3850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -3904,7 +3904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -4176,7 +4176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -4399,7 +4399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", "WorkSpaceId": "System.String" @@ -5217,7 +5217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InformationTypes": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType]", "Labels": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel]", @@ -5408,7 +5408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InformationTypes": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType]", "Labels": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel]", @@ -5815,7 +5815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceAssessment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PassedResources": "System.Int32", "FailedResources": "System.Int32", @@ -6223,7 +6223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceControl", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceControl, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceControl, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PassedAssessments": "System.Int32", "FailedAssessments": "System.Int32", @@ -6587,7 +6587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceStandard", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceStandard, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.RegulatoryCompliance.PSSecurityRegulatoryComplianceStandard, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PassedControls": "System.Int32", "FailedControls": "System.Int32", @@ -6913,7 +6913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendationType": "System.String", "Name": "System.String", @@ -7186,7 +7186,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -7463,7 +7463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "AllowlistValues": "System.Collections.Generic.IList`1[System.String]", @@ -7781,7 +7781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "DenylistValues": "System.Collections.Generic.IList`1[System.String]", @@ -8099,7 +8099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "MinThreshold": "System.Int32", @@ -8459,7 +8459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "MinThreshold": "System.Int32", @@ -8862,7 +8862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings", "Name": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -9239,7 +9239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings", "Name": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -9535,7 +9535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings", "Name": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -9739,7 +9739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings", "Name": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.WorkspaceSettings.PSSecurityWorkspaceSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -10055,7 +10055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Topology", "Name": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopology", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopology, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopology, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TopologyResources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource]", "CalculatedDateTime": "System.Nullable`1[System.DateTime]", @@ -10462,7 +10462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Tasks", "Name": "Microsoft.Azure.Commands.Security.Models.Tasks.PSSecurityTask", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Tasks.PSSecurityTask, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Tasks.PSSecurityTask, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -10962,7 +10962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.SubAssessments", "Name": "Microsoft.Azure.Commands.Security.Models.SubAssessments.PSSecuritySubAssessment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SubAssessments.PSSecuritySubAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SubAssessments.PSSecuritySubAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceDetails": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails", "Status": "Microsoft.Azure.Commands.Security.Models.SubAssessments.PSSecuritySubAssessmentStatus", @@ -11620,7 +11620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentScanRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentScanRecord, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentScanRecord, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsBaselineApplied": "System.Boolean", "MediumSeverityFailedRulesCount": "System.Int32", @@ -12341,7 +12341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Settings", "Name": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -12576,7 +12576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Settings", "Name": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -12667,7 +12667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Settings", "Name": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -12894,7 +12894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Settings", "Name": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Settings.PSSecuritySetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -13077,7 +13077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.SecurityContacts", "Name": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -13456,7 +13456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.SecurityContacts", "Name": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -13754,7 +13754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.SecurityContacts", "Name": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -13960,7 +13960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.SecurityContacts", "Name": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SecurityContacts.PSSecurityContact, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -14362,7 +14362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Pricings", "Name": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FreeTrialRemainingTime": "System.Nullable`1[System.TimeSpan]", "Id": "System.String", @@ -14684,7 +14684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Pricings", "Name": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FreeTrialRemainingTime": "System.Nullable`1[System.TimeSpan]", "Id": "System.String", @@ -14776,7 +14776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Pricings", "Name": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FreeTrialRemainingTime": "System.Nullable`1[System.TimeSpan]", "Id": "System.String", @@ -14962,7 +14962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Pricings", "Name": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Pricings.PSSecurityPricing, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FreeTrialRemainingTime": "System.Nullable`1[System.TimeSpan]", "Id": "System.String", @@ -15118,7 +15118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Locations", "Name": "Microsoft.Azure.Commands.Security.Models.Locations.PSSecurityLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Locations.PSSecurityLocation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Locations.PSSecurityLocation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String" @@ -15438,7 +15438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Requests": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest]", "VirtualMachines": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine]", @@ -16005,7 +16005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Requests": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest]", "VirtualMachines": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine]", @@ -16351,7 +16351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Requests": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest]", "VirtualMachines": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine]", @@ -16557,7 +16557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Requests": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest]", "VirtualMachines": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine]", @@ -16669,7 +16669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine", "GenericTypeArguments": [], @@ -16816,7 +16816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine", "GenericTypeArguments": [], @@ -16959,7 +16959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Requests": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest]", "VirtualMachines": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine]", @@ -17071,7 +17071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine", "GenericTypeArguments": [], @@ -17107,7 +17107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Cmdlets.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Cmdlets.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateInputObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Cmdlets.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateInputObject, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Cmdlets.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateInputObject, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachine": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[]", "Name": "System.String", @@ -17273,7 +17273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine", "GenericTypeArguments": [], @@ -17341,7 +17341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine", "GenericTypeArguments": [], @@ -17433,7 +17433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Cmdlets.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Cmdlets.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateInputObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Cmdlets.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateInputObject, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Cmdlets.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateInputObject, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachine": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[]", "Name": "System.String", @@ -17589,7 +17589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18105,7 +18105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18436,7 +18436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18651,7 +18651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18754,7 +18754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18982,7 +18982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -19040,7 +19040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", "GenericTypeArguments": [], @@ -19355,7 +19355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -19419,7 +19419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", "GenericTypeArguments": [], @@ -19511,7 +19511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19775,7 +19775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -19839,7 +19839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", "GenericTypeArguments": [], @@ -20147,7 +20147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -20211,7 +20211,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", "GenericTypeArguments": [], @@ -20354,7 +20354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20475,7 +20475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20559,7 +20559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -20617,7 +20617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", "GenericTypeArguments": [], @@ -20746,7 +20746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -20810,7 +20810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", "GenericTypeArguments": [], @@ -20926,7 +20926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -20990,7 +20990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", "GenericTypeArguments": [], @@ -21058,7 +21058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSIotSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDefinedResources": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21154,7 +21154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -21218,7 +21218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", "GenericTypeArguments": [], @@ -21410,7 +21410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "TopDevicesList": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice]", @@ -21693,7 +21693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "TopDevicesList": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice]", @@ -22002,7 +22002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "TopDevicesList": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice]", @@ -22423,7 +22423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAggregatedRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "HealthyDevices": "System.Nullable`1[System.Int64]", @@ -22841,7 +22841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIotSecuritySolutionAnalytics", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIotSecuritySolutionAnalytics, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIotSecuritySolutionAnalytics, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metrics": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSeverityMetrics", "DevicesMetrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics]", @@ -23162,7 +23162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.ExternalSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.ExternalSecuritySolutions.PSSecurityExternalSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.ExternalSecuritySolutions.PSSecurityExternalSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.ExternalSecuritySolutions.PSSecurityExternalSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -23635,7 +23635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DiscoveredSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.DiscoveredSecuritySolutions.PSSecurityDiscoveredSecuritySolution", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DiscoveredSecuritySolutions.PSSecurityDiscoveredSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DiscoveredSecuritySolutions.PSSecurityDiscoveredSecuritySolution, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -24043,7 +24043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowlistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule]", "DenylistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule]", @@ -24443,7 +24443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowlistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule]", "DenylistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule]", @@ -24692,7 +24692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowlistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule]", "DenylistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule]", @@ -24991,7 +24991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowlistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule]", "DenylistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule]", @@ -25086,7 +25086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule", "GenericTypeArguments": [], @@ -25104,7 +25104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule", "GenericTypeArguments": [], @@ -25122,7 +25122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule", "GenericTypeArguments": [], @@ -25140,7 +25140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule", "GenericTypeArguments": [], @@ -25158,7 +25158,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowlistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule]", "DenylistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule]", @@ -25321,7 +25321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule", "GenericTypeArguments": [], @@ -25345,7 +25345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule", "GenericTypeArguments": [], @@ -25369,7 +25369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule", "GenericTypeArguments": [], @@ -25393,7 +25393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule", "GenericTypeArguments": [], @@ -25461,7 +25461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule", "GenericTypeArguments": [], @@ -25485,7 +25485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule", "GenericTypeArguments": [], @@ -25509,7 +25509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule", "GenericTypeArguments": [], @@ -25533,7 +25533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule", "GenericTypeArguments": [], @@ -25557,7 +25557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDeviceSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowlistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule]", "DenylistRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule]", @@ -25665,7 +25665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule", "GenericTypeArguments": [], @@ -25689,7 +25689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule", "GenericTypeArguments": [], @@ -25713,7 +25713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule", "GenericTypeArguments": [], @@ -25737,7 +25737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule", "GenericTypeArguments": [], @@ -25880,7 +25880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Compliances", "Name": "Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityCompliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityCompliance, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityCompliance, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AssessmentResult": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment]", "AssessmentTimestampUtcDate": "System.DateTime", @@ -26203,7 +26203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings", "Name": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -26524,7 +26524,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings", "Name": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -26633,7 +26633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings", "Name": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -26910,7 +26910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings", "Name": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AutoProvisioningSettings.PSSecurityAutoProvisioningSetting, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -27065,7 +27065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Assessments", "Name": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessmentStatus", "ResourceDetails": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails", @@ -27572,7 +27572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Assessments", "Name": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessmentStatus", "ResourceDetails": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails", @@ -27986,7 +27986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Assessments", "Name": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessmentStatus", "ResourceDetails": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails", @@ -28192,7 +28192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Assessments", "Name": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessmentStatus", "ResourceDetails": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails", @@ -28809,7 +28809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScore, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScore, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CurrentScore": "System.Nullable`1[System.Double]", "Percentage": "System.Nullable`1[System.Double]", @@ -29049,7 +29049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScoreControlDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScoreControlDefinition, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScoreControlDefinition, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaxScore": "System.Int32", "Id": "System.String", @@ -29289,7 +29289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScore, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SecureScore.PSSecuritySecureScore, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CurrentScore": "System.Nullable`1[System.Double]", "Percentage": "System.Nullable`1[System.Double]", @@ -29529,7 +29529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata", "Name": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -29910,7 +29910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata", "Name": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -30210,7 +30210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata", "Name": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -30418,7 +30418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata", "Name": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AssessmentMetadata.PSSecurityAssessmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -30822,7 +30822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AllowedConnection", "Name": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityAllowedConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityAllowedConnection, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityAllowedConnection, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectableResources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources]", "CalculatedDateTime": "System.Nullable`1[System.DateTime]", @@ -31229,7 +31229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Alerts", "Name": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ConfidenceReasons": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason]", @@ -31923,7 +31923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Alerts", "Name": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ConfidenceReasons": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason]", @@ -31997,7 +31997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.Alerts", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.Alerts.PSSecurityAlertV3", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.Alerts.PSSecurityAlertV3, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.Alerts.PSSecurityAlertV3, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Entities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity]", @@ -32574,7 +32574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Alerts", "Name": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ConfidenceReasons": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason]", @@ -32722,7 +32722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.Alerts", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.Alerts.PSSecurityAlertV3", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.Alerts.PSSecurityAlertV3, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.Alerts.PSSecurityAlertV3, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Entities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity]", @@ -32947,7 +32947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection", "Name": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "Id": "System.String" @@ -33177,7 +33177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection", "Name": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "Id": "System.String" @@ -33407,7 +33407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection", "Name": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AdvancedThreatProtection.PSAdvancedThreatProtection, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "Id": "System.String" @@ -33597,7 +33597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardenings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardenings, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardenings, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsProperties", "Id": "System.String", @@ -33761,7 +33761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule", "GenericTypeArguments": [], @@ -34000,7 +34000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule", "GenericTypeArguments": [], @@ -34193,7 +34193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardenings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardenings, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardenings, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsProperties", "Id": "System.String", @@ -34635,7 +34635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControls", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControls, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControls, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProperties", "Id": "System.String", @@ -34952,7 +34952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControls", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControls, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControls, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProperties", "Id": "System.String", @@ -35400,7 +35400,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -35412,7 +35412,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRuleBaselineResults, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -35680,7 +35680,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineAdjustedResult": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineAdjustedResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineAdjustedResult, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaselineAdjustedResult, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Baseline": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaseline", "Status": "System.String", @@ -35727,7 +35727,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaseline": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaseline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaseline, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentBaseline, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpdatedTime": "System.Nullable`1[System.DateTime]", "ExpectedResults": "System.String[][]" @@ -35794,7 +35794,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRemediation": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRemediation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRemediation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRemediation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Automated": "System.Boolean", "Description": "System.String", @@ -35841,7 +35841,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRule": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QueryCheck": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentQueryCheck", "BenchmarkReferences": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference]", @@ -35893,7 +35893,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentQueryCheck": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentQueryCheck", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentQueryCheck, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityAssessmentQueryCheck, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Query": "System.String", "ColumnNames": "System.String[]", @@ -35939,7 +35939,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -35951,7 +35951,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlVulnerabilityAssessment.PSSqlVulnerabilityBenchmarkReference, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Benchmark": "System.String", "Reference": "System.String" @@ -36008,7 +36008,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36021,7 +36021,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionInformationType, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "Custom": "System.Boolean", @@ -36071,7 +36071,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionKeyword]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionKeyword]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionKeyword, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionKeyword, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36083,7 +36083,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionKeyword": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionKeyword", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionKeyword, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionKeyword, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Custom": "System.Boolean", "CanBeNumeric": "System.Boolean", @@ -36152,7 +36152,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36165,7 +36165,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionSensitivityLabel, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "Order": "System.Int32", @@ -36213,7 +36213,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionRank]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionRank]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionRank, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionRank, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36225,7 +36225,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionRank": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionRank", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionRank, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.SqlInformationProtectionPolicy.PSSqlInformationProtectionRank, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36340,7 +36340,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36352,7 +36352,7 @@ "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Topology", "Name": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResource, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild]", "Parents": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent]", @@ -36403,7 +36403,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36415,7 +36415,7 @@ "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Topology", "Name": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Topology.PSSecurityTopologySingleResourceChild, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceId": "System.String" }, @@ -36459,7 +36459,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36471,7 +36471,7 @@ "Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Topology", "Name": "Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Topology.PSsecurityTopologySingleResourceParent, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceId": "System.String" }, @@ -36527,7 +36527,7 @@ "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Assessments", "Name": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityResourceDetails, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "System.String" }, @@ -36571,7 +36571,7 @@ "Microsoft.Azure.Commands.Security.Models.SubAssessments.PSSecuritySubAssessmentStatus": { "Namespace": "Microsoft.Azure.Commands.Security.Models.SubAssessments", "Name": "Microsoft.Azure.Commands.Security.Models.SubAssessments.PSSecuritySubAssessmentStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SubAssessments.PSSecuritySubAssessmentStatus, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.SubAssessments.PSSecuritySubAssessmentStatus, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Severity": "System.String", "Code": "System.String", @@ -36630,7 +36630,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36642,7 +36642,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyRequest, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachines": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine]", "StartTimeUtc": "System.DateTime", @@ -36688,7 +36688,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36700,7 +36700,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessRequestVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ports": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort]", "Id": "System.String" @@ -36745,7 +36745,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36757,7 +36757,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachinePort, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedSourceAddressPrefixes": "System.Collections.Generic.IList`1[System.String]", "EndTimeUtc": "System.DateTime", @@ -36806,7 +36806,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36818,7 +36818,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ports": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule[]", "Id": "System.String" @@ -36863,7 +36863,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule[]": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule", "GenericTypeArguments": [], @@ -36873,7 +36873,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPortRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedSourceAddressPrefixes": "System.Collections.Generic.IList`1[System.String]", "Number": "System.Int32", @@ -36921,7 +36921,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ports": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort[]", "Id": "System.String" @@ -36966,7 +36966,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort[]": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort", "GenericTypeArguments": [], @@ -36976,7 +36976,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiatePort, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndTimeUtc": "System.DateTime", "Number": "System.Int32", @@ -37022,7 +37022,7 @@ "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[]": { "Namespace": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies", "Name": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine[], Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Security.Models.JitNetworkAccessPolicies.PSSecurityJitNetworkAccessPolicyInitiateVirtualMachine", "GenericTypeArguments": [], @@ -37032,7 +37032,7 @@ "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSUserDefinedResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuerySubscriptions": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String" @@ -37082,7 +37082,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37094,7 +37094,7 @@ "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutions.PSRecommendationConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendationType": "System.String", "Name": "System.String", @@ -37140,7 +37140,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37152,7 +37152,7 @@ "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSTopDevice, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AlertsCount": "System.Nullable`1[System.Int64]", "DeviceId": "System.String", @@ -37210,7 +37210,7 @@ "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSeverityMetrics": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSeverityMetrics", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSeverityMetrics, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSeverityMetrics, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "High": "System.Nullable`1[System.Int32]", "Medium": "System.Nullable`1[System.Int32]", @@ -37256,7 +37256,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37268,7 +37268,7 @@ "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSDevicesMetrics, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DevicesMetrics": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSeverityMetrics", "Date": "System.Nullable`1[System.DateTime]" @@ -37313,7 +37313,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAlertedDevice]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAlertedDevice]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAlertedDevice, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAlertedDevice, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37325,7 +37325,7 @@ "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAlertedDevice": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAlertedDevice", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAlertedDevice, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityAlertedDevice, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AlertsCount": "System.Nullable`1[System.Int32]", "DeviceId": "System.String" @@ -37370,7 +37370,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceAlert]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceAlert]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37382,7 +37382,7 @@ "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceAlert": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceAlert", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceAlert, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AlertsCount": "System.Nullable`1[System.Int32]", "ReportedSeverity": "System.String", @@ -37428,7 +37428,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceRecommendation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceRecommendation]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37440,7 +37440,7 @@ "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceRecommendation": { "Namespace": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics", "Name": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.IotSecuritySolutionAnalytics.PSIoTSecurityDeviceRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DevicesCount": "System.Nullable`1[System.Int32]", "ReportedSeverity": "System.String", @@ -37486,7 +37486,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37498,7 +37498,7 @@ "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSAllowlistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "AllowlistValues": "System.Collections.Generic.IList`1[System.String]", @@ -37547,7 +37547,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37559,7 +37559,7 @@ "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSDenylistCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "DenylistValues": "System.Collections.Generic.IList`1[System.String]", @@ -37608,7 +37608,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37620,7 +37620,7 @@ "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSThresholdCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "MinThreshold": "System.Int32", @@ -37669,7 +37669,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37681,7 +37681,7 @@ "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule": { "Namespace": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups", "Name": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.DeviceSecurityGroups.PSTimeWindowCustomAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "MinThreshold": "System.Int32", @@ -37731,7 +37731,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37743,7 +37743,7 @@ "Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Compliances", "Name": "Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Compliances.PSSecurityComplianceSegment, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Percentage": "System.Double", "SegmentType": "System.String" @@ -37788,7 +37788,7 @@ "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessmentStatus": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Assessments", "Name": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessmentStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessmentStatus, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Assessments.PSSecurityAssessmentStatus, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Code": "System.String", "Cause": "System.String", @@ -37859,7 +37859,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37871,7 +37871,7 @@ "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AllowedConnection", "Name": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectableResources, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InboundConnectedResources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource]", "OutboundConnectedResources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource]", @@ -37917,7 +37917,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37929,7 +37929,7 @@ "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource": { "Namespace": "Microsoft.Azure.Commands.Security.Models.AllowedConnection", "Name": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.AllowedConnection.PSSecurityConnectedResource, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectedResourceId": "System.String", "TcpPorts": "System.String", @@ -37998,7 +37998,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38010,7 +38010,7 @@ "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Alerts", "Name": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertConfidenceReason, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String", "Reason": "System.String" @@ -38055,7 +38055,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38067,7 +38067,7 @@ "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity": { "Namespace": "Microsoft.Azure.Commands.Security.Models.Alerts", "Name": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Security.Models.Alerts.PSSecurityAlertEntity, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String" }, @@ -38189,7 +38189,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsProperties": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsProperties, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsProperties, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EffectiveNetworkSecurityGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups]", "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule]", @@ -38235,7 +38235,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38247,7 +38247,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsEffectiveNetworkSecurityGroups, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroups": "System.Collections.Generic.IList`1[System.String]", "NetworkInterface": "System.String" @@ -38292,7 +38292,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38304,7 +38304,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveNetworkHardening.PSSecurityAdaptiveNetworkHardeningsRule, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Protocols": "System.Collections.Generic.IList`1[System.String]", "IpAddresses": "System.Collections.Generic.IList`1[System.String]", @@ -38352,7 +38352,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProperties": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProperties, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProperties, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProtectionMode": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProtectionMode", "Issues": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary]", @@ -38403,7 +38403,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProtectionMode": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProtectionMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProtectionMode, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsProtectionMode, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exe": "System.String", "Msi": "System.String", @@ -38449,7 +38449,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38461,7 +38461,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsIssueSummary, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NumberOfVms": "System.Nullable`1[System.Double]", "Issue": "System.String" @@ -38506,7 +38506,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPathRecommendation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPathRecommendation]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPathRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPathRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38518,7 +38518,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPathRecommendation": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPathRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPathRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPathRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublisherInfo": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPublisherInfo", "Usernames": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation]", @@ -38570,7 +38570,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPublisherInfo": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPublisherInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPublisherInfo, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsPublisherInfo, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublisherName": "System.String", "ProductName": "System.String", @@ -38617,7 +38617,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38629,7 +38629,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsUserRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Username": "System.String", "RecommendationAction": "System.String" @@ -38674,7 +38674,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsVmRecommendation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsVmRecommendation]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsVmRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsVmRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -38686,7 +38686,7 @@ "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsVmRecommendation": { "Namespace": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls", "Name": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsVmRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsVmRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityCenter.Models.AdaptiveApplicationControls.PSSecurityAdaptiveApplicationControlsVmRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Security, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConfigurationStatus": "System.String", "ResourceId": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights.dll.json new file mode 100644 index 000000000000..1d574b0c1a41 --- /dev/null +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights.dll.json @@ -0,0 +1,22763 @@ +{ + "Cmdlets": [ + { + "VerbName": "Get", + "NounName": "AzSentinelIncident", + "Name": "Get-AzSentinelIncident", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Incidents.GetIncidents", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "WorkspaceScope", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditonalData": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "Owner": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "Labels": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "LastModifiedTimeUtc": "System.Nullable`1[System.DateTime]", + "LastActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "CreatedTimeUTC": "System.Nullable`1[System.DateTime]", + "FirstActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "IncidentNumber": "System.Nullable`1[System.Int32]", + "Id": "System.String", + "Severity": "System.String", + "IncidentUrl": "System.String", + "Description": "System.String", + "ClassificationReason": "System.String", + "ClassificationComment": "System.String", + "Classification": "System.String", + "Etag": "System.String", + "Type": "System.String", + "Name": "System.String", + "Status": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "WorkspaceScope", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "IncidentId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzSentinelIncident", + "Name": "New-AzSentinelIncident", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Incidents.NewIncidents", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "IncidentId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditonalData": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "Owner": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "Labels": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "LastModifiedTimeUtc": "System.Nullable`1[System.DateTime]", + "LastActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "CreatedTimeUTC": "System.Nullable`1[System.DateTime]", + "FirstActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "IncidentNumber": "System.Nullable`1[System.Int32]", + "Id": "System.String", + "Severity": "System.String", + "IncidentUrl": "System.String", + "Description": "System.String", + "ClassificationReason": "System.String", + "ClassificationComment": "System.String", + "Classification": "System.String", + "Etag": "System.String", + "Type": "System.String", + "Name": "System.String", + "Status": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Classificaton", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "BenignPositive", + "FalsePositive", + "TruePositive", + "Undetermined" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClassificationComment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ClassificationReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "InaccurateData", + "IncorrectAlertLogic", + "SuspiciousActivity", + "SuspiciousButExpected" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Owner", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "AssignedTo": "System.String", + "Email": "System.String", + "UserPrincipalName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Active", + "Closed", + "New" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Title", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "IncidentId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Classificaton", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "BenignPositive", + "FalsePositive", + "TruePositive", + "Undetermined" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClassificationComment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ClassificationReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "InaccurateData", + "IncorrectAlertLogic", + "SuspiciousActivity", + "SuspiciousButExpected" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Owner", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "AssignedTo": "System.String", + "Email": "System.String", + "UserPrincipalName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Active", + "Closed", + "New" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Title", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzSentinelIncidentOwner", + "Name": "New-AzSentinelIncidentOwner", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Incidents.NewIncidentsOwner", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "GeneralScope", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditonalData": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "Owner": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "Labels": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "LastModifiedTimeUtc": "System.Nullable`1[System.DateTime]", + "LastActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "CreatedTimeUTC": "System.Nullable`1[System.DateTime]", + "FirstActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "IncidentNumber": "System.Nullable`1[System.Int32]", + "Id": "System.String", + "Severity": "System.String", + "IncidentUrl": "System.String", + "Description": "System.String", + "ClassificationReason": "System.String", + "ClassificationComment": "System.String", + "Classification": "System.String", + "Etag": "System.String", + "Type": "System.String", + "Name": "System.String", + "Status": "System.String", + "Title": "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": "AssignedTo", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Email", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ObjectId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserPrincipalName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "GeneralScope", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AssignedTo", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Email", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ObjectId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "UserPrincipalName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzSentinelIncident", + "Name": "Remove-AzSentinelIncident", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Incidents.RemoveIncidents", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "IncidentId", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditonalData": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "Owner": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "Labels": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "LastModifiedTimeUtc": "System.Nullable`1[System.DateTime]", + "LastActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "CreatedTimeUTC": "System.Nullable`1[System.DateTime]", + "FirstActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "IncidentNumber": "System.Nullable`1[System.Int32]", + "Id": "System.String", + "Severity": "System.String", + "IncidentUrl": "System.String", + "Description": "System.String", + "ClassificationReason": "System.String", + "ClassificationComment": "System.String", + "Classification": "System.String", + "Etag": "System.String", + "Type": "System.String", + "Name": "System.String", + "Status": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "IncidentId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditonalData": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "Owner": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "Labels": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "LastModifiedTimeUtc": "System.Nullable`1[System.DateTime]", + "LastActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "CreatedTimeUTC": "System.Nullable`1[System.DateTime]", + "FirstActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "IncidentNumber": "System.Nullable`1[System.Int32]", + "Id": "System.String", + "Severity": "System.String", + "IncidentUrl": "System.String", + "Description": "System.String", + "ClassificationReason": "System.String", + "ClassificationComment": "System.String", + "Classification": "System.String", + "Etag": "System.String", + "Type": "System.String", + "Name": "System.String", + "Status": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Update", + "NounName": "AzSentinelIncident", + "Name": "Update-AzSentinelIncident", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Incidents.UpdateIncidents", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "IncidentId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditonalData": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "Owner": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "Labels": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "LastModifiedTimeUtc": "System.Nullable`1[System.DateTime]", + "LastActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "CreatedTimeUTC": "System.Nullable`1[System.DateTime]", + "FirstActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "IncidentNumber": "System.Nullable`1[System.Int32]", + "Id": "System.String", + "Severity": "System.String", + "IncidentUrl": "System.String", + "Description": "System.String", + "ClassificationReason": "System.String", + "ClassificationComment": "System.String", + "Classification": "System.String", + "Etag": "System.String", + "Type": "System.String", + "Name": "System.String", + "Status": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncidentID", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditonalData": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "Owner": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "Labels": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "LastModifiedTimeUtc": "System.Nullable`1[System.DateTime]", + "LastActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "CreatedTimeUTC": "System.Nullable`1[System.DateTime]", + "FirstActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "IncidentNumber": "System.Nullable`1[System.Int32]", + "Id": "System.String", + "Severity": "System.String", + "IncidentUrl": "System.String", + "Description": "System.String", + "ClassificationReason": "System.String", + "ClassificationComment": "System.String", + "Classification": "System.String", + "Etag": "System.String", + "Type": "System.String", + "Name": "System.String", + "Status": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "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": "Classification", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "BenignPositive", + "FalsePositive", + "TruePositive", + "Undetermined" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClassificationComment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ClassificationReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "InaccurateData", + "IncorrectAlertLogic", + "SuspiciousActivity", + "SuspiciousButExpected" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Owner", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "AssignedTo": "System.String", + "Email": "System.String", + "UserPrincipalName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Active", + "Closed", + "New" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Title", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "IncidentId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentID", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Classification", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "BenignPositive", + "FalsePositive", + "TruePositive", + "Undetermined" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClassificationComment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ClassificationReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "InaccurateData", + "IncorrectAlertLogic", + "SuspiciousActivity", + "SuspiciousButExpected" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Owner", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "AssignedTo": "System.String", + "Email": "System.String", + "UserPrincipalName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Active", + "Closed", + "New" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Title", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncident, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditonalData": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "Owner": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "Labels": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "LastModifiedTimeUtc": "System.Nullable`1[System.DateTime]", + "LastActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "CreatedTimeUTC": "System.Nullable`1[System.DateTime]", + "FirstActivityTimeUtc": "System.Nullable`1[System.DateTime]", + "IncidentNumber": "System.Nullable`1[System.Int32]", + "Id": "System.String", + "Severity": "System.String", + "IncidentUrl": "System.String", + "Description": "System.String", + "ClassificationReason": "System.String", + "ClassificationComment": "System.String", + "Classification": "System.String", + "Etag": "System.String", + "Type": "System.String", + "Name": "System.String", + "Status": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Classification", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "BenignPositive", + "FalsePositive", + "TruePositive", + "Undetermined" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClassificationComment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ClassificationReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "InaccurateData", + "IncorrectAlertLogic", + "SuspiciousActivity", + "SuspiciousButExpected" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Owner", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "AssignedTo": "System.String", + "Email": "System.String", + "UserPrincipalName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Active", + "Closed", + "New" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Title", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "ResourceId", + "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": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Classification", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "BenignPositive", + "FalsePositive", + "TruePositive", + "Undetermined" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClassificationComment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ClassificationReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "InaccurateData", + "IncorrectAlertLogic", + "SuspiciousActivity", + "SuspiciousButExpected" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Owner", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "AssignedTo": "System.String", + "Email": "System.String", + "UserPrincipalName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Active", + "Closed", + "New" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Title", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "Classification", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "BenignPositive", + "FalsePositive", + "TruePositive", + "Undetermined" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClassificationComment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ClassificationReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "InaccurateData", + "IncorrectAlertLogic", + "SuspiciousActivity", + "SuspiciousButExpected" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Owner", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "AssignedTo": "System.String", + "Email": "System.String", + "UserPrincipalName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Active", + "Closed", + "New" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Title", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "AzSentinelIncidentComment", + "Name": "Get-AzSentinelIncidentComment", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.IncidentsComments.GetIncidentComments", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "IncidentId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentComment", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentComment, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Author": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentCommentAuthor", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Message": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncidentCommentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "IncidentId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "IncidentCommentId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentCommentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzSentinelIncidentComment", + "Name": "New-AzSentinelIncidentComment", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.IncidentsComments.NewBookmarks", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "IncidentCommentId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentComment", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentComment, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Author": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentCommentAuthor", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Message": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncidentCommentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Message", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "IncidentCommentId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "IncidentCommentId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Message", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSentinelDataConnector", + "Name": "Get-AzSentinelDataConnector", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.DataConnectors.GetDataConnectors", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "WorkspaceScope", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "WorkspaceScope", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DataConnectorId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzSentinelDataConnector", + "Name": "New-AzSentinelDataConnector", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.DataConnectors.NewDataConnectors", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AzureActiveDirectory", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AzureActiveDirectory", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureAdvancedThreatProtection", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureSecurityCenter", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AmazonWebServicesCloudTrail", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MicrosoftCloudAppSecurity", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MicrosoftDefenderAdvancedThreatProtection", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Office365", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ThreatIntelligence", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AwsRoleArn", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Logs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DiscoveryLogs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Exchange", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SharePoint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Teams", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Indicators", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "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": "AzureActiveDirectory", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AzureActiveDirectory", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AzureAdvancedThreatProtection", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AzureAdvancedThreatProtection", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AzureSecurityCenter", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AzureSecurityCenter", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AmazonWebServicesCloudTrail", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AmazonWebServicesCloudTrail", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AwsRoleArn", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "Logs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "MicrosoftCloudAppSecurity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "MicrosoftCloudAppSecurity", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DiscoveryLogs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "MicrosoftDefenderAdvancedThreatProtection", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "MicrosoftDefenderAdvancedThreatProtection", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Office365", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Office365", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Exchange", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharePoint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Teams", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ThreatIntelligence", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ThreatIntelligence", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Indicators", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzSentinelDataConnector", + "Name": "Remove-AzSentinelDataConnector", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.DataConnectors.RemoveDataConnectors", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "DataConnectorId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.SecurityInsights.Models.DataConnectors", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DataConnectorId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Update", + "NounName": "AzSentinelDataConnector", + "Name": "Update-AzSentinelDataConnector", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.DataConnectors.UpdateDataConnectors", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "DataConnectorId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.SecurityInsights.Models.DataConnectors", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AwsRoleArn", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Logs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DiscoveryLogs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Exchange", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SharePoint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Teams", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Indicators", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "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": "DataConnectorId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "DataConnectorId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "AwsRoleArn", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Logs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DiscoveryLogs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Exchange", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharePoint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Teams", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Indicators", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.DataConnectors.PSSentinelDataConnector, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "AwsRoleArn", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Logs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DiscoveryLogs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Exchange", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharePoint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Teams", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Indicators", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "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": "ResourceId", + "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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "AwsRoleArn", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Logs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DiscoveryLogs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Exchange", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharePoint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Teams", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Indicators", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "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": "Alerts", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "AwsRoleArn", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Logs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DiscoveryLogs", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Exchange", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharePoint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Teams", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Indicators", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "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 + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSentinelBookmark", + "Name": "Get-AzSentinelBookmark", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Bookmarks.GetBookmarks", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "WorkspaceScope", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentInfo": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "CreatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "UpdatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "Labels": "System.Collections.Generic.IList`1[System.String]", + "Created": "System.Nullable`1[System.DateTime]", + "Updated": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "DisplayName": "System.String", + "Notes": "System.String", + "Query": "System.String", + "QueryResult": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BookmarkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "WorkspaceScope", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BookmarkId.", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "BookmarkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzSentinelBookmark", + "Name": "New-AzSentinelBookmark", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Bookmarks.NewBookmarks", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "BookmarkId.", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentInfo": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "CreatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "UpdatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "Labels": "System.Collections.Generic.IList`1[System.String]", + "Created": "System.Nullable`1[System.DateTime]", + "Updated": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "DisplayName": "System.String", + "Notes": "System.String", + "Query": "System.String", + "QueryResult": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BookmarkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IncidentInfo", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentId": "System.String", + "RelationName": "System.String", + "Severity": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Note", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "QueryResult", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "BookmarkId.", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "BookmarkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IncidentInfo", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentId": "System.String", + "RelationName": "System.String", + "Severity": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Note", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "QueryResult", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "__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": "AzSentinelBookmark", + "Name": "Remove-AzSentinelBookmark", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Bookmarks.RemoveAlertRules", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "BookmarkId.", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentInfo": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "CreatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "UpdatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "Labels": "System.Collections.Generic.IList`1[System.String]", + "Created": "System.Nullable`1[System.DateTime]", + "Updated": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "DisplayName": "System.String", + "Notes": "System.String", + "Query": "System.String", + "QueryResult": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BookmarkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentInfo": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "CreatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "UpdatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "Labels": "System.Collections.Generic.IList`1[System.String]", + "Created": "System.Nullable`1[System.DateTime]", + "Updated": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "DisplayName": "System.String", + "Notes": "System.String", + "Query": "System.String", + "QueryResult": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "BookmarkId.", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "BookmarkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentInfo": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "CreatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "UpdatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "Labels": "System.Collections.Generic.IList`1[System.String]", + "Created": "System.Nullable`1[System.DateTime]", + "Updated": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "DisplayName": "System.String", + "Notes": "System.String", + "Query": "System.String", + "QueryResult": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Update", + "NounName": "AzSentinelBookmark", + "Name": "Update-AzSentinelBookmark", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Bookmarks.UpdateBoomarks", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "BookmarkId.", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentInfo": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "CreatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "UpdatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "Labels": "System.Collections.Generic.IList`1[System.String]", + "Created": "System.Nullable`1[System.DateTime]", + "Updated": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "DisplayName": "System.String", + "Notes": "System.String", + "Query": "System.String", + "QueryResult": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BookmarkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentInfo": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "CreatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "UpdatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "Labels": "System.Collections.Generic.IList`1[System.String]", + "Created": "System.Nullable`1[System.DateTime]", + "Updated": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "DisplayName": "System.String", + "Notes": "System.String", + "Query": "System.String", + "QueryResult": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IncidentInfo", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentId": "System.String", + "RelationName": "System.String", + "Severity": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Note", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "QueryResult", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "BookmarkId.", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "BookmarkId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IncidentInfo", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentId": "System.String", + "RelationName": "System.String", + "Severity": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Note", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "QueryResult", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmark, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentInfo": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "CreatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "UpdatedBy": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "Labels": "System.Collections.Generic.IList`1[System.String]", + "Created": "System.Nullable`1[System.DateTime]", + "Updated": "System.Nullable`1[System.DateTime]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "DisplayName": "System.String", + "Notes": "System.String", + "Query": "System.String", + "QueryResult": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IncidentInfo", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentId": "System.String", + "RelationName": "System.String", + "Severity": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Note", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "QueryResult", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ResourceId", + "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": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IncidentInfo", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentId": "System.String", + "RelationName": "System.String", + "Severity": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Note", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "QueryResult", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IncidentInfo", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentId": "System.String", + "RelationName": "System.String", + "Severity": "System.String", + "Title": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Note", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "QueryResult", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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 + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSentinelAlertRuleTemplate", + "Name": "Get-AzSentinelAlertRuleTemplate", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.AlertRulesTemplates.GetAlertRuleTemplate", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "WorkspaceScope", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRuleTemplates", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRuleTemplates.PSSentinelAlertRuleTemplate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRuleTemplates.PSSentinelAlertRuleTemplate, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleTemplateId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "WorkspaceScope", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AlertRuleTemplateId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleTemplateId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSentinelAlertRule", + "Name": "Get-AzSentinelAlertRule", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.AlertRules.GetIncidents", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "WorkspaceScope", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.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": "WorkspaceScope", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AlertRuleId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzSentinelAlertRule", + "Name": "New-AzSentinelAlertRule", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.AlertRules.NewAlertRules", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ScheduledAlertRule", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Scheduled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MicrosoftSecurityIncidentCreation", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Fusion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProductFilter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Azure Active Directory Identity Protection", + "Azure Advanced Threat Protection", + "Azure Security Center", + "Azure Security Center for IoT", + "Microsoft Cloud App Security", + "Microsoft Defender Advanced Threat Protection", + "Office 365 Advanced Threat Protection" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisplayNamesExcludeFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisplayNamesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SeveritiesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SuppressionDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SuppressionEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "QueryFrequency", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "QueryPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tactic", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TriggerOperator", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.SecurityInsights.Models", + "Name": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator", + "AssemblyQualifiedName": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator, Microsoft.Azure.Management.SecurityInsights, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": [ + "Equal", + "GreaterThan", + "LessThan", + "NotEqual" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TriggerThreshold", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "FusionAlertRule", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "Fusion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "MicrosoftSecurityIncidentCreationRule", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "MicrosoftSecurityIncidentCreation", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ProductFilter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Azure Active Directory Identity Protection", + "Azure Advanced Threat Protection", + "Azure Security Center", + "Azure Security Center for IoT", + "Microsoft Cloud App Security", + "Microsoft Defender Advanced Threat Protection", + "Office 365 Advanced Threat Protection" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesExcludeFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SeveritiesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "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": "ScheduledAlertRule", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "Scheduled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuppressionDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.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": "SuppressionEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "QueryFrequency", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "QueryPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "High", + "Informational", + "Low", + "Medium" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tactic", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerOperator", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.SecurityInsights.Models", + "Name": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator", + "AssemblyQualifiedName": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator, Microsoft.Azure.Management.SecurityInsights, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": [ + "Equal", + "GreaterThan", + "LessThan", + "NotEqual" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerThreshold", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzSentinelAlertRule", + "Name": "Remove-AzSentinelAlertRule", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.AlertRules.RemoveAlertRules", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AlertRuleId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.SecurityInsights.Models.AlertRules", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AlertRuleId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSentinelAlertRuleAction", + "Name": "Get-AzSentinelAlertRuleAction", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Actions.GetAlertRuleActions", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "AlertRuleId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "LogicAppResourceId": "System.String", + "WorkflowId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ActionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "AlertRuleId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ActionId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ActionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzSentinelAlertRuleAction", + "Name": "New-AzSentinelAlertRuleAction", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Actions.NewAlertRuleActions", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ActionId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "LogicAppResourceId": "System.String", + "WorkflowId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ActionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "LogicAppResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TriggerUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ActionId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ActionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "LogicAppResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "TriggerUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzSentinelAlertRuleAction", + "Name": "Remove-AzSentinelAlertRuleAction", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Actions.RemoveAlertRuleActions", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ActionId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "LogicAppResourceId": "System.String", + "WorkflowId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ActionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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.SecurityInsights.Models.Actions", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "LogicAppResourceId": "System.String", + "WorkflowId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ActionId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ActionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "LogicAppResourceId": "System.String", + "WorkflowId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Update", + "NounName": "AzSentinelAlertRuleAction", + "Name": "Update-AzSentinelAlertRuleAction", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Actions.UpdateAlertRuleActions", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ActionId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "LogicAppResourceId": "System.String", + "WorkflowId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ActionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "LogicAppResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TriggerUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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.SecurityInsights.Models.Actions", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "LogicAppResourceId": "System.String", + "WorkflowId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "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": "ActionId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ActionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "LogicAppResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "TriggerUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "LogicAppResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "TriggerUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Actions.PSSentinelActionResponse, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "LogicAppResourceId": "System.String", + "WorkflowId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "LogicAppResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "TriggerUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Update", + "NounName": "AzSentinelAlertRule", + "Name": "Update-AzSentinelAlertRule", + "ClassName": "Microsoft.Azure.Commands.SecurityInsights.Cmdlets.Actions.UpdateAlertRules", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AlertRuleId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Disabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProductFilter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Azure Active Directory Identity Protection", + "Azure Advanced Threat Protection", + "Azure Security Center", + "Azure Security Center for IoT", + "Microsoft Cloud App Security", + "Microsoft Defender Advanced Threat Protection", + "Office 365 Advanced Threat Protection" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisplayNamesExcludeFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisplayNamesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SeveritiesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SuppressionDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SuppressionEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SuppressionDisabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "QueryFrequency", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "QueryPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tactic", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TriggerOperator", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.SecurityInsights.Models", + "Name": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator", + "AssemblyQualifiedName": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator, Microsoft.Azure.Management.SecurityInsights, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "TriggerThreshold", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "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": "AlertRuleId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Disabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProductFilter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Azure Active Directory Identity Protection", + "Azure Advanced Threat Protection", + "Azure Security Center", + "Azure Security Center for IoT", + "Microsoft Cloud App Security", + "Microsoft Defender Advanced Threat Protection", + "Office 365 Advanced Threat Protection" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesExcludeFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SeveritiesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuppressionDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.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": "SuppressionEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SuppressionDisabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "QueryFrequency", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "QueryPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Tactic", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerOperator", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.SecurityInsights.Models", + "Name": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator", + "AssemblyQualifiedName": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator, Microsoft.Azure.Management.SecurityInsights, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "TriggerThreshold", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Disabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProductFilter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Azure Active Directory Identity Protection", + "Azure Advanced Threat Protection", + "Azure Security Center", + "Azure Security Center for IoT", + "Microsoft Cloud App Security", + "Microsoft Defender Advanced Threat Protection", + "Office 365 Advanced Threat Protection" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesExcludeFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SeveritiesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuppressionDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.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": "SuppressionEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SuppressionDisabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "QueryFrequency", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "QueryPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Tactic", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerOperator", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.SecurityInsights.Models", + "Name": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator", + "AssemblyQualifiedName": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator, Microsoft.Azure.Management.SecurityInsights, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "TriggerThreshold", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "InputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.AlertRules.PSSentinelAlertRule, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "Kind": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Disabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProductFilter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Azure Active Directory Identity Protection", + "Azure Advanced Threat Protection", + "Azure Security Center", + "Azure Security Center for IoT", + "Microsoft Cloud App Security", + "Microsoft Defender Advanced Threat Protection", + "Office 365 Advanced Threat Protection" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesExcludeFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SeveritiesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuppressionDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.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": "SuppressionEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SuppressionDisabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "QueryFrequency", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "QueryPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Tactic", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerOperator", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.SecurityInsights.Models", + "Name": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator", + "AssemblyQualifiedName": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator, Microsoft.Azure.Management.SecurityInsights, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "TriggerThreshold", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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": "ResourceId", + "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": "AlertRuleTemplateName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Disabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DisplayName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ProductFilter", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Azure Active Directory Identity Protection", + "Azure Advanced Threat Protection", + "Azure Security Center", + "Azure Security Center for IoT", + "Microsoft Cloud App Security", + "Microsoft Defender Advanced Threat Protection", + "Office 365 Advanced Threat Protection" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesExcludeFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisplayNamesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SeveritiesFilter", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuppressionDuration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.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": "SuppressionEnabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SuppressionDisabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Query", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "QueryFrequency", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "QueryPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.TimeSpan]", + "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Severity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "Tactic", + "AliasList": [], + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerOperator", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.SecurityInsights.Models", + "Name": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator", + "AssemblyQualifiedName": "Microsoft.Azure.Management.SecurityInsights.Models.TriggerOperator, Microsoft.Azure.Management.SecurityInsights, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "TriggerThreshold", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": 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 + } + ] + } + ], + "AliasList": [] + } + ], + "TypeDictionary": { + "System.String": { + "Namespace": null, + "Name": "System.String", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Boolean": { + "Namespace": null, + "Name": "System.Boolean", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Byte": { + "Namespace": null, + "Name": "System.Byte", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.SByte": { + "Namespace": null, + "Name": "System.SByte", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Int16": { + "Namespace": null, + "Name": "System.Int16", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.UInt16": { + "Namespace": null, + "Name": "System.UInt16", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Int32": { + "Namespace": null, + "Name": "System.Int32", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.UInt32": { + "Namespace": null, + "Name": "System.UInt32", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Int64": { + "Namespace": null, + "Name": "System.Int64", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.UInt64": { + "Namespace": null, + "Name": "System.UInt64", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Single": { + "Namespace": null, + "Name": "System.Single", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Double": { + "Namespace": null, + "Name": "System.Double", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Decimal": { + "Namespace": null, + "Name": "System.Decimal", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Char": { + "Namespace": null, + "Name": "System.Char", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentAdditionalData, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AlertProductNames": "System.Collections.Generic.IList`1[System.String]", + "Tactics": "System.Collections.Generic.IList`1[System.String]", + "AlertsCount": "System.Nullable`1[System.Int32]", + "BookmarksCount": "System.Nullable`1[System.Int32]", + "CommentsCount": "System.Nullable`1[System.Int32]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "System.Collections.Generic.IList`1[System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[System.Int32]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "System.Type": { + "Namespace": "System", + "Name": "System.Type", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentOwner, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "AssignedTo": "System.String", + "Email": "System.String", + "UserPrincipalName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "System.Nullable`1[System.Guid]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Guid]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Guid" + ], + "Methods": [], + "Constructors": [] + }, + "System.Guid": { + "Namespace": "System", + "Name": "System.Guid", + "AssemblyQualifiedName": "System.Guid, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Incidents.PSSentinelIncidentLabel, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LabelName": "System.String", + "LabelType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "System.Nullable`1[System.DateTime]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.DateTime]", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.DateTime" + ], + "Methods": [], + "Constructors": [] + }, + "System.DateTime": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", + "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", + "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", + "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", + "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", + "VersionProfile": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Credential": "System.String", + "Type": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IDictionary`2[System.String,System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OnPremise": "System.Boolean", + "VersionProfiles": "System.Collections.Generic.IList`1[System.String]", + "Name": "System.String", + "AdTenant": "System.String", + "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String", + "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String", + "BatchEndpointResourceId": "System.String", + "DataLakeEndpointResourceId": "System.String", + "GraphEndpointResourceId": "System.String", + "AzureKeyVaultServiceEndpointResourceId": "System.String", + "AzureKeyVaultDnsSuffix": "System.String", + "TrafficManagerDnsSuffix": "System.String", + "SqlDatabaseDnsSuffix": "System.String", + "ActiveDirectoryServiceEndpointResourceId": "System.String", + "GraphUrl": "System.String", + "GalleryUrl": "System.String", + "ActiveDirectoryAuthority": "System.String", + "PublishSettingsFileUrl": "System.String", + "ManagementPortalUrl": "System.String", + "ResourceManagerUrl": "System.String", + "ServiceManagementUrl": "System.String", + "StorageEndpointSuffix": "System.String", + "ContainerRegistryEndpointSuffix": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "State": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CacheData": "System.Byte[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "System.Byte[]": { + "Namespace": "System", + "Name": "System.Byte[]", + "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.Byte", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentCommentAuthor": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentCommentAuthor", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.IncidentComments.PSSentinelIncidentCommentAuthor, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "Email": "System.String", + "UserPrincipalName": "System.String", + "Name": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkIncidentInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IncidentId": "System.String", + "RelationName": "System.String", + "Severity": "System.String", + "Title": "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.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo": { + "Namespace": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks", + "Name": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.SecurityInsights.Models.Bookmarks.PSSentinelBookmarkUserInfo, Microsoft.Azure.PowerShell.Cmdlets.SecurityInsights, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ObjectId": "System.Nullable`1[System.Guid]", + "Email": "System.String", + "Name": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "System.TimeSpan": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.TypeCode": { + "Namespace": "System", + "Name": "System.TypeCode", + "AssemblyQualifiedName": "System.TypeCode, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + } + } +} diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll.json index cdf108653031..ac965c43be58 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -201,7 +201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName", "GenericTypeArguments": [], @@ -676,7 +676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName", "GenericTypeArguments": [], @@ -937,7 +937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -2016,7 +2016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -2375,7 +2375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -2596,7 +2596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3018,7 +3018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3324,7 +3324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity", @@ -3845,7 +3845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ProvisioningState": "System.String", @@ -4351,7 +4351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultParameterList": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4936,7 +4936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PartitionDescription": "Microsoft.Azure.Management.ServiceFabric.Models.PartitionSchemeDescription", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5517,7 +5517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -5904,7 +5904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ManagedIdentity", @@ -6420,7 +6420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ManagedIdentity", @@ -7455,7 +7455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ManagedIdentity", @@ -7951,7 +7951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ManagedIdentity", @@ -8221,7 +8221,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ManagedIdentity", @@ -8459,7 +8459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8562,7 +8562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8899,7 +8899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ManagedIdentity", @@ -9265,7 +9265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9374,7 +9374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10007,7 +10007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10116,7 +10116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10773,7 +10773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10882,7 +10882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11255,7 +11255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ManagedIdentity", @@ -11573,7 +11573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12079,7 +12079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12498,7 +12498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12918,7 +12918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13145,7 +13145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13301,7 +13301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13611,7 +13611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13915,7 +13915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -14499,7 +14499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15116,7 +15116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15634,7 +15634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15900,7 +15900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16100,7 +16100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16696,7 +16696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16962,7 +16962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -16973,26 +16973,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -17092,7 +17094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -17103,26 +17105,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -17668,7 +17672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -17679,239 +17683,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", - "ClusterUpgradeCadence": "System.String", - "ClusterCodeVersion": "System.String", + "Ipv4Address": "System.String", "ClusterId": "System.String", - "Etag": "System.String", "AdminPassword": "System.String", - "AdminUserName": "System.String", - "Ipv4Address": "System.String", - "DnsName": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "cluster", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Admin", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Thumbprint", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ClientCertByCnByObj", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", - "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", - "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", - "Sku": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku", - "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Clients": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate]", - "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", - "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", - "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", - "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", - "AllowRdpAccess": "System.Nullable`1[System.Boolean]", - "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", - "ClientConnectionPort": "System.Nullable`1[System.Int32]", - "Location": "System.String", - "Type": "System.String", - "Name": "System.String", - "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -17997,7 +17790,222 @@ }, { "ParameterMetadata": { - "Name": "CommonName", + "Name": "Thumbprint", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ClientCertByCnByObj", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", + "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", + "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", + "Sku": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku", + "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Clients": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate]", + "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", + "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", + "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", + "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", + "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", + "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", + "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", + "Location": "System.String", + "Type": "System.String", + "Name": "System.String", + "Id": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", + "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", + "ClusterCodeVersion": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ClusterState": "System.String", + "AdminUserName": "System.String", + "DnsName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "cluster", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Admin", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CommonName", "AliasList": [], "Type": { "Namespace": "System", @@ -18193,7 +18201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -18204,26 +18212,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -18579,7 +18589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -18590,26 +18600,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -18723,11 +18735,13 @@ }, { "Name": "UpgradeMode", - "AliasList": [], + "AliasList": [ + "ClusterUpgradeMode" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18826,7 +18840,9 @@ }, { "Name": "CodeVersion", - "AliasList": [], + "AliasList": [ + "ClusterCodeVersion" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -18842,6 +18858,111 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "UpgradeCadence", + "AliasList": [ + "ClusterUpgradeCadence" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", + "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClusterUpgradeCadence", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClusterUpgradeCadence, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "ClientCertIsAdmin", "AliasList": [], @@ -19030,7 +19151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19145,6 +19266,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "ZonalResiliency", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "AliasList": [], @@ -19278,11 +19417,13 @@ { "ParameterMetadata": { "Name": "UpgradeMode", - "AliasList": [], + "AliasList": [ + "ClusterUpgradeMode" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19387,7 +19528,9 @@ { "ParameterMetadata": { "Name": "CodeVersion", - "AliasList": [], + "AliasList": [ + "ClusterCodeVersion" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -19408,6 +19551,117 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UpgradeCadence", + "AliasList": [ + "ClusterUpgradeCadence" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", + "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClusterUpgradeCadence", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClusterUpgradeCadence, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "ClientCertIsAdmin", @@ -19609,7 +19863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19735,6 +19989,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ZonalResiliency", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -19880,11 +20158,13 @@ { "ParameterMetadata": { "Name": "UpgradeMode", - "AliasList": [], + "AliasList": [ + "ClusterUpgradeMode" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19989,7 +20269,9 @@ { "ParameterMetadata": { "Name": "CodeVersion", - "AliasList": [], + "AliasList": [ + "ClusterCodeVersion" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -20010,6 +20292,117 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UpgradeCadence", + "AliasList": [ + "ClusterUpgradeCadence" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", + "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClusterUpgradeCadence", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClusterUpgradeCadence, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "ClientCertIsAdmin", @@ -20235,7 +20628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20361,6 +20754,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ZonalResiliency", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -20586,7 +21003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -20597,26 +21014,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -21010,7 +21429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -21021,26 +21440,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -21298,7 +21719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -21309,26 +21730,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -21428,7 +21851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -21439,26 +21862,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -21962,7 +22387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -21973,26 +22398,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -22175,7 +22602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -22186,26 +22613,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -22487,7 +22916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -22498,26 +22927,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -22635,7 +23066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -22646,26 +23077,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -22726,7 +23159,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -22949,7 +23382,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -23193,7 +23626,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -23413,7 +23846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory", @@ -23424,26 +23857,28 @@ "LoadBalancingRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]", "NetworkSecurityRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule]", "FabricSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]", - "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AddonFeatures": "System.Collections.Generic.IList`1[System.String]", - "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ClusterCertificateThumbprints": "System.Collections.Generic.IList`1[System.String]", "AllowRdpAccess": "System.Nullable`1[System.Boolean]", + "EnableAutoOSUpgrade": "System.Nullable`1[System.Boolean]", + "ZonalResiliency": "System.Nullable`1[System.Boolean]", "HttpGatewayConnectionPort": "System.Nullable`1[System.Int32]", "ClientConnectionPort": "System.Nullable`1[System.Int32]", + "Fqdn": "System.String", "Location": "System.String", "Type": "System.String", "Name": "System.String", "Id": "System.String", - "Fqdn": "System.String", - "ClusterState": "System.String", - "ProvisioningState": "System.String", + "Ipv4Address": "System.String", + "ClusterId": "System.String", + "AdminPassword": "System.String", "ClusterUpgradeCadence": "System.String", + "ClusterUpgradeMode": "System.String", "ClusterCodeVersion": "System.String", - "ClusterId": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", - "AdminPassword": "System.String", + "ClusterState": "System.String", "AdminUserName": "System.String", - "Ipv4Address": "System.String", "DnsName": "System.String" }, "ElementType": null, @@ -23653,28 +24088,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -23790,28 +24228,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -24451,28 +24892,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -25118,28 +25562,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -25257,28 +25704,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -25664,28 +26114,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -26039,28 +26492,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -26478,28 +26934,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -26649,7 +27108,9 @@ }, { "Name": "DiskSize", - "AliasList": [], + "AliasList": [ + "DataDiskSize" + ], "Type": { "Namespace": "System", "Name": "System.Int32", @@ -26665,6 +27126,111 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "DiskType", + "AliasList": [ + "DataDiskType" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", + "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDiskType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDiskType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "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": "ApplicationStartPort", "AliasList": [], @@ -26871,6 +27437,60 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "VmUserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IsStateless", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MultiplePlacementGroup", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "AliasList": [], @@ -26977,14 +27597,38 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "NodeTypeName" - ], + "Name": "Name", + "AliasList": [ + "NodeTypeName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "InstanceCount", + "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": [], @@ -26994,21 +27638,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 1, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InstanceCount", + "Name": "Primary", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27020,19 +27664,21 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Primary", - "AliasList": [], + "Name": "DiskSize", + "AliasList": [ + "DataDiskSize" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [], @@ -27051,16 +27697,103 @@ }, { "ParameterMetadata": { - "Name": "DiskSize", - "AliasList": [], + "Name": "DiskType", + "AliasList": [ + "DataDiskType" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", + "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDiskType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDiskType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "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": [], @@ -27345,6 +28078,78 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "VmUserAssignedIdentity", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsStateless", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "MultiplePlacementGroup", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -27502,28 +28307,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -28093,28 +28901,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -28273,28 +29084,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -28880,28 +29694,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -29017,28 +29834,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -29384,28 +30204,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -30137,28 +30960,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -30294,28 +31120,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -31479,28 +32308,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -31635,28 +32467,31 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EphemeralPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "ApplicationPorts": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", "VmManagedIdentity": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmManagedIdentity", "IsPrimary": "System.Boolean", + "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "PlacementProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Capacities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "VmSecrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]", "VmExtensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]", "DataDiskSizeGB": "System.Int32", "VmInstanceCount": "System.Int32", - "VmSize": "System.String", - "VmImagePublisher": "System.String", + "IsStateless": "System.Nullable`1[System.Boolean]", + "MultiplePlacementGroups": "System.Nullable`1[System.Boolean]", "VmImageOffer": "System.String", + "VmSize": "System.String", "VmImageVersion": "System.String", + "DataDiskType": "System.String", "ProvisioningState": "System.String", "Id": "System.String", "Name": "System.String", "Type": "System.String", + "VmImagePublisher": "System.String", "VmImageSku": "System.String" }, "ElementType": null, @@ -31962,7 +32797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceResourceProperties", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", @@ -32539,7 +33374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceResourceProperties", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", @@ -32954,7 +33789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33075,7 +33910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -33093,7 +33928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -33129,7 +33964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33695,7 +34530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33828,7 +34663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -33852,7 +34687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -33900,7 +34735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34393,7 +35228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34526,7 +35361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -34550,7 +35385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -34598,7 +35433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35163,7 +35998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35296,7 +36131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -35320,7 +36155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -35368,7 +36203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35981,7 +36816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36114,7 +36949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -36138,7 +36973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -36186,7 +37021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36775,7 +37610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36908,7 +37743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -36932,7 +37767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -36980,7 +37815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37641,7 +38476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37774,7 +38609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -37798,7 +38633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -37846,7 +38681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38353,7 +39188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceResourceProperties", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", @@ -38868,7 +39703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceResourceProperties", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", @@ -39133,7 +39968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceResourceProperties", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", @@ -39294,7 +40129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceResourceProperties", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", @@ -39614,7 +40449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39735,7 +40570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -39753,7 +40588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -39789,7 +40624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40203,7 +41038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40336,7 +41171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -40360,7 +41195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -40408,7 +41243,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40947,7 +41782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41080,7 +41915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -41104,7 +41939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -41152,7 +41987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41521,7 +42356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41654,7 +42489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -41678,7 +42513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -41726,7 +42561,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42191,7 +43026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42324,7 +43159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -42348,7 +43183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -42396,7 +43231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42621,7 +43456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceResourceProperties", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", @@ -42815,7 +43650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42948,7 +43783,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -42972,7 +43807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -43020,7 +43855,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -43245,7 +44080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceResourceProperties", "SystemData": "Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SystemData", @@ -43535,7 +44370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -43668,7 +44503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", "GenericTypeArguments": [], @@ -43692,7 +44527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", "GenericTypeArguments": [], @@ -43740,7 +44575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -44088,7 +44923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity", @@ -45059,7 +45894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ProvisioningState": "System.String", @@ -45343,7 +46178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultParameterList": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -45806,7 +46641,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PartitionDescription": "Microsoft.Azure.Management.ServiceFabric.Models.PartitionSchemeDescription", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -46117,7 +46952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46485,7 +47320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46834,7 +47669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47183,7 +48018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47628,7 +48463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48073,7 +48908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48518,7 +49353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48746,7 +49581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentResult, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentResult, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Cluster": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", "Deployment": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended", @@ -49173,7 +50008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50501,7 +51336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50824,7 +51659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity", @@ -51259,7 +52094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity", @@ -51579,7 +52414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ProvisioningState": "System.String", @@ -51999,7 +52834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ProvisioningState": "System.String", @@ -52324,7 +53159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultParameterList": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -52777,7 +53612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultParameterList": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -53107,7 +53942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PartitionDescription": "Microsoft.Azure.Management.ServiceFabric.Models.PartitionSchemeDescription", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -53560,7 +54395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PartitionDescription": "Microsoft.Azure.Management.ServiceFabric.Models.PartitionSchemeDescription", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -53781,7 +54616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -53950,7 +54785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName", "GenericTypeArguments": [], @@ -54377,7 +55212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName", "GenericTypeArguments": [], @@ -54638,7 +55473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -54951,7 +55786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -55310,7 +56145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -55623,7 +56458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -55790,7 +56625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription", "GenericTypeArguments": [], @@ -56039,7 +56874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription", "GenericTypeArguments": [], @@ -56158,7 +56993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -56343,7 +57178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription", "GenericTypeArguments": [], @@ -56616,7 +57451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription", "GenericTypeArguments": [], @@ -56735,7 +57570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -56866,7 +57701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57078,7 +57913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57281,7 +58116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57511,7 +58346,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity", @@ -57754,7 +58589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -58073,7 +58908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity", @@ -58408,7 +59243,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -58969,7 +59804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -59410,7 +60245,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy", "Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity", @@ -59589,7 +60424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -59948,7 +60783,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -60079,7 +60914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.VmImageKind", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.VmImageKind, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.VmImageKind, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60271,7 +61106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.VmImageKind", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.VmImageKind, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.VmImageKind, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60431,7 +61266,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -60582,7 +61417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60818,7 +61653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61002,7 +61837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -61135,7 +61970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61367,7 +62202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -63298,7 +64133,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsAdmin": "System.Boolean", "CertificateCommonName": "System.String", @@ -65547,6 +66382,7 @@ "Properties": { "FrontendPort": "System.Int32", "BackendPort": "System.Int32", + "ProbePort": "System.Nullable`1[System.Int32]", "Protocol": "System.String", "ProbeProtocol": "System.String", "ProbeRequestPath": "System.String" @@ -65611,6 +66447,10 @@ "Name": "probeProtocol", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "probePort", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "probeRequestPath", "Type": "System.Reflection.RuntimeParameterInfo" @@ -65890,7 +66730,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -66445,7 +67285,6 @@ "ProvisioningState": "System.String", "ServiceTypeName": "System.String", "ServicePackageActivationMode": "System.String", - "ServiceDnsName": "System.String", "PlacementConstraints": "System.String", "DefaultMoveCost": "System.String" }, @@ -66532,10 +67371,6 @@ { "Name": "servicePackageActivationMode", "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "serviceDnsName", - "Type": "System.Reflection.RuntimeParameterInfo" } ] } @@ -66967,7 +67802,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrimaryDefaultLoad": "System.Nullable`1[System.Int32]", "SecondaryDefaultLoad": "System.Nullable`1[System.Int32]", @@ -67065,7 +67900,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Scheme": "System.String", "ServiceName": "System.String" @@ -67134,7 +67969,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy", "AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory", @@ -67218,7 +68053,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.Internal.Resources.Models.DeploymentPropertiesExtended", "Name": "System.String", @@ -68143,7 +68978,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -68155,7 +68990,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2", "KeyVaultId": "System.String", @@ -68216,7 +69051,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription]", "Name": "System.String" @@ -68266,7 +69101,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -68278,7 +69113,7 @@ "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription": { "Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models", "Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" 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 80bfd16049f3..d63712c3bab7 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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HasLegalHold": "System.Nullable`1[System.Boolean]", "Tags": "System.String[]" @@ -132,13 +132,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -146,29 +148,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -237,7 +241,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -580,13 +584,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -594,29 +600,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -759,7 +767,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -1022,7 +1030,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Days": "System.Nullable`1[System.Int32]" @@ -1130,13 +1138,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -1144,29 +1154,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -1429,13 +1441,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -1443,29 +1457,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -1775,7 +1791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "MinRestoreTime": "System.Nullable`1[System.DateTime]", @@ -1884,13 +1900,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -1898,29 +1916,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -2183,13 +2203,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -2197,29 +2219,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -2529,7 +2553,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ChangeFeed": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed", "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", @@ -2656,13 +2680,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -2670,29 +2696,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -3001,13 +3029,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -3015,29 +3045,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -3425,7 +3457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "MinRestoreTime": "System.Nullable`1[System.DateTime]", @@ -3534,13 +3566,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -3548,29 +3582,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -3879,13 +3915,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -3893,29 +3931,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -4303,7 +4343,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ChangeFeed": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed", "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", @@ -4430,13 +4470,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -4444,29 +4486,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -4687,13 +4731,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -4701,29 +4747,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -4961,7 +5009,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -5114,13 +5162,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -5128,29 +5178,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -5442,13 +5494,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -5456,29 +5510,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -5750,7 +5806,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -5872,13 +5928,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -5886,29 +5944,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -5977,7 +6037,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -6322,13 +6382,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -6336,29 +6398,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -6503,7 +6567,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -6770,7 +6834,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -6892,13 +6956,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -6906,29 +6972,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -6997,7 +7065,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -7133,7 +7201,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -7449,13 +7517,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -7463,29 +7533,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -7654,7 +7726,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -7870,7 +7942,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -8082,7 +8154,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -8235,13 +8307,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -8249,29 +8323,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -8397,7 +8473,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8634,7 +8710,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8936,7 +9012,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9113,13 +9189,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -9127,29 +9205,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -9251,7 +9331,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9428,13 +9508,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -9442,29 +9524,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -9614,7 +9698,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9818,7 +9902,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10080,13 +10164,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -10094,29 +10180,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -10187,7 +10275,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -10572,13 +10660,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -10586,29 +10676,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -10777,7 +10869,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -11088,7 +11180,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -11210,13 +11302,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -11224,29 +11318,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -11315,7 +11411,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -11451,7 +11547,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -11725,13 +11821,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -11739,29 +11837,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -11906,7 +12006,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -12098,7 +12198,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -12262,7 +12362,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HasLegalHold": "System.Nullable`1[System.Boolean]", "Tags": "System.String[]" @@ -12380,13 +12480,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -12394,29 +12496,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -12485,7 +12589,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -12828,13 +12932,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -12842,29 +12948,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -13007,7 +13115,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -13270,7 +13378,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -13392,13 +13500,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -13406,29 +13516,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -13497,7 +13609,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -13613,7 +13725,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -14209,13 +14321,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -14223,29 +14337,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -14466,13 +14582,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -14480,29 +14598,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -14697,7 +14817,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -14937,7 +15057,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -15179,7 +15299,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -15344,7 +15464,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -15558,7 +15678,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ChangeFeed": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed", "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", @@ -15685,13 +15805,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -15699,29 +15821,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -16110,13 +16234,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -16124,29 +16250,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -16672,7 +16800,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -16846,13 +16974,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -16860,29 +16990,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -16953,7 +17085,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -17067,7 +17199,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17304,7 +17436,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17508,13 +17640,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -17522,29 +17656,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -17619,7 +17755,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17798,7 +17934,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -17918,7 +18054,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18095,7 +18231,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18279,7 +18415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", "ShareDeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", @@ -18392,13 +18528,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -18406,29 +18544,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -18649,13 +18789,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -18663,29 +18805,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -18923,7 +19067,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -19077,13 +19221,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -19091,29 +19237,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -19559,13 +19707,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -19573,29 +19723,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -19765,13 +19917,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -19779,29 +19933,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -20114,7 +20270,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -20268,13 +20424,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -20282,29 +20440,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -20694,13 +20854,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -20708,29 +20870,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -21190,13 +21354,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -21204,29 +21370,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -21315,7 +21483,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -21701,13 +21869,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -21715,29 +21885,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -22022,7 +22194,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -22334,7 +22506,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -22488,13 +22660,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -22502,29 +22676,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -22595,7 +22771,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -22933,13 +23109,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -22947,29 +23125,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -23141,7 +23321,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -23357,7 +23537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", "ShareDeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", @@ -23470,13 +23650,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -23484,29 +23666,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -23817,13 +24001,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -23831,29 +24017,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -24244,7 +24432,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -24419,13 +24607,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -24433,29 +24623,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -24544,7 +24736,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -24986,13 +25178,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -25000,29 +25194,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -25369,7 +25565,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Deleted": "System.Nullable`1[System.Boolean]", @@ -25743,7 +25939,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -25915,7 +26111,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -26075,7 +26271,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -26246,7 +26442,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -26417,7 +26613,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -26536,7 +26732,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -26662,7 +26858,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26704,7 +26900,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26746,7 +26942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26831,7 +27027,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -26849,7 +27045,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -26867,7 +27063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", "GenericTypeArguments": [], @@ -27136,7 +27332,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -27279,7 +27475,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -27422,7 +27618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", "GenericTypeArguments": [], @@ -28028,7 +28224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", "EnabledTime": "System.Nullable`1[System.DateTime]", @@ -28169,13 +28365,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -28183,29 +28381,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -28449,13 +28649,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -28463,29 +28665,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -28703,13 +28907,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -28717,29 +28923,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -29394,11 +29602,12 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.StorageAccountKey", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.StorageAccountKey, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.StorageAccountKey, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Permissions": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.KeyPermission]", - "Value": "System.String", - "KeyName": "System.String" + "CreationTime": "System.Nullable`1[System.DateTime]", + "KeyName": "System.String", + "Value": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -29450,6 +29659,10 @@ { "Name": "permissions", "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "creationTime", + "Type": "System.Reflection.RuntimeParameterInfo" } ] } @@ -29689,7 +29902,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -29822,13 +30035,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -29836,29 +30051,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -30128,13 +30345,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -30142,29 +30361,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -30334,7 +30555,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -30711,7 +30932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultProperties": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties", "RequireInfrastructureEncryption": "System.Nullable`1[System.Boolean]", @@ -30837,13 +31058,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -30851,29 +31074,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -31121,13 +31346,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -31135,29 +31362,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -31379,13 +31608,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -31393,29 +31624,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -31524,13 +31757,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -31538,29 +31773,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -31847,13 +32084,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -31861,29 +32100,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -32149,7 +32390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartRange": "System.String", "EndRange": "System.String" @@ -32421,7 +32662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter", "RuleId": "System.String", @@ -32812,13 +33053,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -32826,29 +33069,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -33139,13 +33384,126 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "UserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "KeyVaultUserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KeyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "KeyVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "KeyVaultUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "NetworkRuleSet", "AliasList": [], "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -33629,6 +33987,42 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "SasExpirationPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, 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": "KeyExpirationPeriodInDay", + "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": false + }, { "Name": "AllowBlobPublicAccess", "AliasList": [], @@ -33687,6 +34081,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "EdgeZone", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": [ @@ -34039,6 +34451,155 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyVaultUserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KeyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "KeyVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "KeyVaultUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "NetworkRuleSet", @@ -34046,7 +34607,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -34439,6 +35000,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SasExpirationPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, 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": "KeyExpirationPeriodInDay", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AllowBlobPublicAccess", @@ -34515,6 +35124,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "EdgeZone", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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", @@ -34903,6 +35536,155 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyVaultUserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KeyName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "KeyVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "KeyVaultUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "NetworkRuleSet", @@ -34910,7 +35692,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -35305,12 +36087,12 @@ }, { "ParameterMetadata": { - "Name": "AllowBlobPublicAccess", + "Name": "SasExpirationPeriod", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35320,7 +36102,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -35329,23 +36111,19 @@ }, { "ParameterMetadata": { - "Name": "MinimumTlsVersion", + "Name": "KeyExpirationPeriodInDay", "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": [], "Methods": [], "Constructors": [] }, - "ValidateSet": [ - "TLS1_0", - "TLS1_1", - "TLS1_2" - ], + "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false @@ -35357,7 +36135,7 @@ }, { "ParameterMetadata": { - "Name": "AllowSharedKeyAccess", + "Name": "AllowBlobPublicAccess", "AliasList": [], "Type": { "Namespace": "System", @@ -35381,46 +36159,7 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingChoice", + "Name": "MinimumTlsVersion", "AliasList": [], "Type": { "Namespace": "System", @@ -35433,8 +36172,9 @@ "Constructors": [] }, "ValidateSet": [ - "MicrosoftRouting", - "InternetRouting" + "TLS1_0", + "TLS1_1", + "TLS1_2" ], "ValidateRangeMin": null, "ValidateRangeMax": null, @@ -35444,15 +36184,129 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ActiveDirectoryDomainServicesForFile", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "EnableActiveDirectoryDomainServicesForFile", + "Name": "AllowSharedKeyAccess", + "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": "EdgeZone", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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 + }, + { + "ParameterMetadata": { + "Name": "RoutingChoice", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "MicrosoftRouting", + "InternetRouting" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ActiveDirectoryDomainServicesForFile", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "EnableActiveDirectoryDomainServicesForFile", "AliasList": [], "Type": { "Namespace": "System", @@ -35524,15 +36378,306 @@ }, { "ParameterMetadata": { - "Name": "ActiveDirectoryForestName", + "Name": "ActiveDirectoryForestName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ActiveDirectoryDomainGuid", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ActiveDirectoryDomainSid", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "ActiveDirectoryAzureStorageSid", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "StorageAccountName", + "AccountName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "SkuName", + "AliasList": [ + "StorageAccountType", + "AccountType", + "Type" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Standard_LRS", + "Standard_ZRS", + "Standard_GRS", + "Standard_RAGRS", + "Premium_LRS", + "Premium_ZRS", + "Standard_GZRS", + "Standard_RAGZRS" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Kind", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Storage", + "StorageV2", + "BlobStorage", + "BlockBlobStorage", + "FileStorage" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccessTier", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Hot", + "Cool" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomDomainName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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": "UseSubDomain", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.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": [], + "GenericTypeArguments": [ + "System.Boolean" + ], "Methods": [], "Constructors": [] }, @@ -35548,12 +36693,14 @@ }, { "ParameterMetadata": { - "Name": "ActiveDirectoryDomainGuid", - "AliasList": [], + "Name": "Tag", + "AliasList": [ + "Tags" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35563,7 +36710,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -35572,12 +36719,12 @@ }, { "ParameterMetadata": { - "Name": "ActiveDirectoryDomainSid", + "Name": "EnableHttpsTrafficOnly", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35587,7 +36734,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -35596,12 +36743,12 @@ }, { "ParameterMetadata": { - "Name": "ActiveDirectoryAzureStorageSid", + "Name": "AssignIdentity", "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35611,7 +36758,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -35620,95 +36767,7 @@ }, { "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": "Name", - "AliasList": [ - "StorageAccountName", - "AccountName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=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": "SkuName", - "AliasList": [ - "StorageAccountType", - "AccountType", - "Type" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [ - "Standard_LRS", - "Standard_ZRS", - "Standard_GRS", - "Standard_RAGRS", - "Premium_LRS", - "Premium_ZRS", - "Standard_GZRS", - "Standard_RAGZRS" - ], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": 2, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Location", + "Name": "UserAssignedIdentityId", "AliasList": [], "Type": { "Namespace": "System", @@ -35725,14 +36784,14 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": 3, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Kind", + "Name": "IdentityType", "AliasList": [], "Type": { "Namespace": "System", @@ -35745,11 +36804,10 @@ "Constructors": [] }, "ValidateSet": [ - "Storage", - "StorageV2", - "BlobStorage", - "BlockBlobStorage", - "FileStorage" + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" ], "ValidateRangeMin": null, "ValidateRangeMax": null, @@ -35762,7 +36820,7 @@ }, { "ParameterMetadata": { - "Name": "AccessTier", + "Name": "KeyVaultUserAssignedIdentityId", "AliasList": [], "Type": { "Namespace": "System", @@ -35774,10 +36832,7 @@ "Methods": [], "Constructors": [] }, - "ValidateSet": [ - "Hot", - "Cool" - ], + "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false @@ -35789,7 +36844,7 @@ }, { "ParameterMetadata": { - "Name": "CustomDomainName", + "Name": "KeyName", "AliasList": [], "Type": { "Namespace": "System", @@ -35813,40 +36868,12 @@ }, { "ParameterMetadata": { - "Name": "UseSubDomain", + "Name": "KeyVersion", "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": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "AliasList": [ - "Tags" - ], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35856,7 +36883,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -35865,36 +36892,12 @@ }, { "ParameterMetadata": { - "Name": "EnableHttpsTrafficOnly", + "Name": "KeyVaultUri", "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": "AssignIdentity", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35904,7 +36907,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -35918,7 +36921,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -36311,6 +37314,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SasExpirationPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, 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": "KeyExpirationPeriodInDay", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AllowBlobPublicAccess", @@ -36387,6 +37438,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "EdgeZone", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.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", @@ -36472,11 +37547,12 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.StorageAccountKey", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.StorageAccountKey, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.StorageAccountKey, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Permissions": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.KeyPermission]", - "Value": "System.String", - "KeyName": "System.String" + "CreationTime": "System.Nullable`1[System.DateTime]", + "KeyName": "System.String", + "Value": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -36528,6 +37604,10 @@ { "Name": "permissions", "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "creationTime", + "Type": "System.Reflection.RuntimeParameterInfo" } ] } @@ -36777,7 +37857,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -37046,7 +38126,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition", "Enabled": "System.Nullable`1[System.Boolean]", @@ -37172,7 +38252,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -37241,7 +38321,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -37416,7 +38496,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -37491,7 +38571,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -37636,7 +38716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultProperties": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties", "RequireInfrastructureEncryption": "System.Nullable`1[System.Boolean]", @@ -37762,13 +38842,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -37776,29 +38858,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -38358,13 +39442,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -38372,29 +39458,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -38587,13 +39675,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -38601,29 +39691,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -38998,13 +40090,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -39012,29 +40106,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -39121,7 +40217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", "EnabledTime": "System.Nullable`1[System.DateTime]", @@ -39422,13 +40518,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -39436,29 +40534,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -39625,7 +40725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", "EnabledTime": "System.Nullable`1[System.DateTime]", @@ -40216,13 +41316,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -40230,29 +41332,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -40341,7 +41445,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -40592,13 +41696,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -40606,29 +41712,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -40865,7 +41973,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -41090,7 +42198,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41132,7 +42240,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41174,7 +42282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41259,7 +42367,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -41277,7 +42385,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -41295,7 +42403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", "GenericTypeArguments": [], @@ -41564,7 +42672,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -41707,7 +42815,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -41850,7 +42958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", "GenericTypeArguments": [], @@ -42456,7 +43564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters", "Status": "System.String", @@ -42578,13 +43686,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -42592,29 +43702,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -42701,7 +43813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange", "GenericTypeArguments": [], @@ -42868,7 +43980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange", "GenericTypeArguments": [], @@ -43032,7 +44144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange", "GenericTypeArguments": [], @@ -43148,13 +44260,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -43162,29 +44276,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -43283,7 +44399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange", "GenericTypeArguments": [], @@ -43423,7 +44539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange", "GenericTypeArguments": [], @@ -43606,13 +44722,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -43620,29 +44738,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -43909,13 +45029,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -43923,29 +45045,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -44257,7 +45381,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", "EnabledTime": "System.Nullable`1[System.DateTime]", @@ -44398,13 +45522,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -44412,29 +45538,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -44503,7 +45631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", "EnabledTime": "System.Nullable`1[System.DateTime]", @@ -44659,7 +45787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule", "GenericTypeArguments": [], @@ -44838,7 +45966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule", "GenericTypeArguments": [], @@ -44956,7 +46084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", "EnabledTime": "System.Nullable`1[System.DateTime]", @@ -45108,13 +46236,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -45122,29 +46252,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -45291,7 +46423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule", "GenericTypeArguments": [], @@ -45759,13 +46891,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -45773,29 +46907,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -46113,7 +47249,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "KeyVaultUri", @@ -46151,13 +47287,72 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "UserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KeyVaultUserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "NetworkRuleSet", "AliasList": [], "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -46621,6 +47816,42 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "SasExpirationPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, 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": "KeyExpirationPeriodInDay", + "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": false + }, { "Name": "AsJob", "AliasList": [], @@ -46960,6 +48191,83 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KeyVaultUserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "NetworkRuleSet", @@ -46967,7 +48275,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -47334,6 +48642,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SasExpirationPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, 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": "KeyExpirationPeriodInDay", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -47739,6 +49095,83 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KeyVaultUserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "NetworkRuleSet", @@ -47746,7 +49179,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -48113,6 +49546,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SasExpirationPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, 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": "KeyExpirationPeriodInDay", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -48273,7 +49754,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -48590,6 +50071,83 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KeyVaultUserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "NetworkRuleSet", @@ -48597,7 +50155,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -48964,6 +50522,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SasExpirationPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, 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": "KeyExpirationPeriodInDay", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -49489,6 +51095,83 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "KeyVaultUserAssignedIdentityId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, 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": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "SystemAssigned", + "UserAssigned", + "SystemAssignedUserAssigned", + "None" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "NetworkRuleSet", @@ -49496,7 +51179,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -49863,6 +51546,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SasExpirationPeriod", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.TimeSpan", + "AssemblyQualifiedName": "System.TimeSpan, 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": "KeyExpirationPeriodInDay", + "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": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -49972,7 +51703,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -50087,13 +51818,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -50101,29 +51834,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -50210,7 +51945,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -50230,7 +51965,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -50395,7 +52130,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -50515,7 +52250,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -50641,13 +52376,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -50655,29 +52392,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -50752,7 +52491,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -50820,13 +52559,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -50834,29 +52575,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -50933,7 +52676,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -51083,7 +52826,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -51177,7 +52920,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -51354,7 +53097,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -51590,7 +53333,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -51693,7 +53436,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -51796,7 +53539,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -51814,7 +53557,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -51832,7 +53575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", "GenericTypeArguments": [], @@ -51958,7 +53701,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -52067,7 +53810,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -52176,7 +53919,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -52200,7 +53943,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -52224,7 +53967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", "GenericTypeArguments": [], @@ -52323,7 +54066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultProperties": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties", "RequireInfrastructureEncryption": "System.Nullable`1[System.Boolean]", @@ -52449,13 +54192,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -52463,29 +54208,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -52554,7 +54301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultProperties": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties", "RequireInfrastructureEncryption": "System.Nullable`1[System.Boolean]", @@ -53141,13 +54888,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -53155,29 +54904,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -53373,13 +55124,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -53387,29 +55140,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -53629,7 +55384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultProperties": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties", "RequireInfrastructureEncryption": "System.Nullable`1[System.Boolean]", @@ -53817,7 +55572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScope, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultProperties": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties", "RequireInfrastructureEncryption": "System.Nullable`1[System.Boolean]", @@ -54107,7 +55862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.CheckNameAvailabilityResult", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CheckNameAvailabilityResult, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CheckNameAvailabilityResult, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Reason": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Reason]", "NameAvailable": "System.Nullable`1[System.Boolean]", @@ -54318,7 +56073,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Unit": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.UsageUnit]", "CurrentValue": "System.Nullable`1[System.Int32]", @@ -54690,7 +56445,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActiveDirectoryProperties": "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties", "DirectoryServiceOptions": "System.String" @@ -54740,7 +56495,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DomainName": "System.String", "NetBiosDomainName": "System.String", @@ -54794,7 +56549,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters", "Status": "System.String", @@ -54851,7 +56606,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobRanges": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]", "TimeToRestore": "System.DateTime" @@ -54906,7 +56661,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange", "GenericTypeArguments": [], @@ -54916,7 +56671,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartRange": "System.String", "EndRange": "System.String" @@ -55005,7 +56760,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.BlobRestoreRange]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.BlobRestoreRange]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.BlobRestoreRange, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.BlobRestoreRange, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -55017,7 +56772,7 @@ "Microsoft.Azure.Management.Storage.Models.BlobRestoreRange": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.BlobRestoreRange", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.BlobRestoreRange, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.BlobRestoreRange, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartRange": "System.String", "EndRange": "System.String" @@ -55101,7 +56856,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseSubDomain": "System.Nullable`1[System.Boolean]", "Name": "System.String" @@ -55156,7 +56911,7 @@ "Microsoft.Azure.Management.Storage.Models.CustomDomain": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.CustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CustomDomain, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CustomDomain, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseSubDomainName": "System.Nullable`1[System.Boolean]", "Name": "System.String" @@ -55217,10 +56972,65 @@ } ] }, + "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Name": "System.String", + "Type": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "extendedLocation", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CanFailover": "System.Nullable`1[System.Boolean]", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -55285,10 +57095,65 @@ "Methods": [], "Constructors": [] }, + "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Key1": "System.Nullable`1[System.DateTime]", + "Key2": "System.Nullable`1[System.DateTime]" + }, + "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": "keyCreationTime", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -55476,7 +57341,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -55486,7 +57351,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55522,7 +57387,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55627,7 +57492,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", "GenericTypeArguments": [], @@ -55637,7 +57502,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55673,7 +57538,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -55683,7 +57548,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55719,7 +57584,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -55731,7 +57596,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55826,7 +57691,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -55838,7 +57703,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55933,7 +57798,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Action]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Action]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.Action, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.Action, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -55945,7 +57810,7 @@ "Microsoft.Azure.Management.Storage.Models.Action": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.Action", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Action, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Action, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56040,7 +57905,7 @@ "Microsoft.Azure.Management.Storage.Models.DefaultAction": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.DefaultAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DefaultAction, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DefaultAction, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56135,7 +58000,7 @@ "Microsoft.Azure.Management.Storage.Models.IPRule": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.IPRule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.IPRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.IPRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Action]", "IPAddressOrRange": "System.String" @@ -56199,7 +58064,7 @@ "Microsoft.Azure.Management.Storage.Models.ResourceAccessRule": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ResourceAccessRule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ResourceAccessRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ResourceAccessRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TenantId": "System.String", "ResourceId": "System.String" @@ -56258,7 +58123,7 @@ "Microsoft.Azure.Management.Storage.Models.VirtualNetworkRule": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.VirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.VirtualNetworkRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.VirtualNetworkRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Action]", "VirtualNetworkResourceId": "System.String", @@ -56327,7 +58192,7 @@ "Microsoft.Azure.Management.Storage.Models.NetworkRuleSet": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.NetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.NetworkRuleSet, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.NetworkRuleSet, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultAction": "Microsoft.Azure.Management.Storage.Models.DefaultAction", "IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.IPRule]", @@ -56406,7 +58271,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.IPRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.IPRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.IPRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.IPRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56418,7 +58283,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.ResourceAccessRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.ResourceAccessRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.ResourceAccessRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.ResourceAccessRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56430,7 +58295,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.VirtualNetworkRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.VirtualNetworkRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.VirtualNetworkRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.VirtualNetworkRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56442,7 +58307,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishMicrosoftEndpoints": "System.Nullable`1[System.Boolean]", "PublishInternetEndpoints": "System.Nullable`1[System.Boolean]", @@ -56498,7 +58363,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "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]", @@ -56558,7 +58423,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.Restriction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.Restriction]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.Restriction, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.Restriction, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56570,7 +58435,7 @@ "Microsoft.Azure.Management.Storage.Models.Restriction": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.Restriction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Restriction, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Restriction, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Values": "System.Collections.Generic.IList`1[System.String]", "Type": "System.String", @@ -56646,7 +58511,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.SKUCapability]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.SKUCapability]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.SKUCapability, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.SKUCapability, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56658,7 +58523,7 @@ "Microsoft.Azure.Management.Storage.Models.SKUCapability": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.SKUCapability", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SKUCapability, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SKUCapability, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" @@ -56717,7 +58582,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.SkuTier]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.SkuTier]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.SkuTier, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.SkuTier, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -56729,7 +58594,7 @@ "Microsoft.Azure.Management.Storage.Models.SkuTier": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SkuTier, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SkuTier, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56824,7 +58689,7 @@ "Microsoft.Azure.Management.Storage.Models.Sku": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.Sku", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Sku, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Sku, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.SkuTier]", "Name": "System.String" @@ -56888,7 +58753,7 @@ "Microsoft.Azure.Management.Storage.Models.Encryption": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.Encryption", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Encryption, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Encryption, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EncryptionIdentity": "Microsoft.Azure.Management.Storage.Models.EncryptionIdentity", "Services": "Microsoft.Azure.Management.Storage.Models.EncryptionServices", @@ -56967,7 +58832,7 @@ "Microsoft.Azure.Management.Storage.Models.EncryptionIdentity": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.EncryptionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.EncryptionIdentity, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.EncryptionIdentity, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EncryptionUserAssignedIdentity": "System.String" }, @@ -57021,7 +58886,7 @@ "Microsoft.Azure.Management.Storage.Models.EncryptionServices": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.EncryptionServices", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.EncryptionServices, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.EncryptionServices, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Blob": "Microsoft.Azure.Management.Storage.Models.EncryptionService", "File": "Microsoft.Azure.Management.Storage.Models.EncryptionService", @@ -57090,7 +58955,7 @@ "Microsoft.Azure.Management.Storage.Models.EncryptionService": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.EncryptionService", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.EncryptionService, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.EncryptionService, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "LastEnabledTime": "System.Nullable`1[System.DateTime]", @@ -57154,7 +59019,7 @@ "Microsoft.Azure.Management.Storage.Models.KeyVaultProperties": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.KeyVaultProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.KeyVaultProperties, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.KeyVaultProperties, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastKeyRotationTimestamp": "System.Nullable`1[System.DateTime]", "KeyName": "System.String", @@ -57228,7 +59093,7 @@ "Microsoft.Azure.Management.Storage.Models.Endpoints": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.Endpoints", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Endpoints, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Endpoints, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InternetEndpoints": "Microsoft.Azure.Management.Storage.Models.StorageAccountInternetEndpoints", "MicrosoftEndpoints": "Microsoft.Azure.Management.Storage.Models.StorageAccountMicrosoftEndpoints", @@ -57317,7 +59182,7 @@ "Microsoft.Azure.Management.Storage.Models.StorageAccountInternetEndpoints": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.StorageAccountInternetEndpoints", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.StorageAccountInternetEndpoints, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.StorageAccountInternetEndpoints, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Blob": "System.String", "File": "System.String", @@ -57386,7 +59251,7 @@ "Microsoft.Azure.Management.Storage.Models.StorageAccountMicrosoftEndpoints": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.StorageAccountMicrosoftEndpoints", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.StorageAccountMicrosoftEndpoints, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.StorageAccountMicrosoftEndpoints, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Blob": "System.String", "Queue": "System.String", @@ -57465,7 +59330,7 @@ "Microsoft.Azure.Management.Storage.Models.Identity": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.Identity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Identity, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Identity, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity]", "PrincipalId": "System.String", @@ -57539,7 +59404,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57552,7 +59417,7 @@ "Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrincipalId": "System.String", "ClientId": "System.String" @@ -57608,6 +59473,125 @@ } ] }, + "Microsoft.Azure.Management.Storage.Models.KeyPolicy": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.KeyPolicy, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "KeyExpirationPeriodInDays": "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": "keyExpirationPeriodInDays", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "Microsoft.Azure.Management.Storage.Models.SasPolicy": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.SasPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SasPolicy, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SasExpirationPeriod": "System.String", + "ExpirationAction": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "sasExpirationPeriod", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, "System.Collections.Generic.IDictionary`2[System.String,System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -57624,7 +59608,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.AccessTier, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.AccessTier, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57636,7 +59620,7 @@ "Microsoft.Azure.Management.Storage.Models.AccessTier": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.AccessTier", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.AccessTier, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.AccessTier, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57731,7 +59715,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.AccountStatus, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.AccountStatus, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57743,7 +59727,7 @@ "Microsoft.Azure.Management.Storage.Models.AccountStatus": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.AccountStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.AccountStatus, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.AccountStatus, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57838,7 +59822,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.ProvisioningState, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.ProvisioningState, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -57850,7 +59834,7 @@ "Microsoft.Azure.Management.Storage.Models.ProvisioningState": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ProvisioningState, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ProvisioningState, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57945,13 +59929,15 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", "BlobRestoreStatus": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "ExtendedLocation": "Microsoft.Azure.Commands.Management.Storage.Models.PSExtendedLocation", "GeoReplicationStats": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", + "KeyCreationTime": "Microsoft.Azure.Commands.Management.Storage.Models.PSKeyCreationTime", "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", "RoutingPreference": "Microsoft.Azure.Commands.Management.Storage.Models.PSRoutingPreference", "Sku": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", @@ -57959,29 +59945,31 @@ "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "KeyPolicy": "Microsoft.Azure.Management.Storage.Models.KeyPolicy", + "SasPolicy": "Microsoft.Azure.Management.Storage.Models.SasPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", "FailoverInProgress": "System.Nullable`1[System.Boolean]", + "AllowSharedKeyAccess": "System.Nullable`1[System.Boolean]", "EnableNfsV3": "System.Nullable`1[System.Boolean]", "AllowBlobPublicAccess": "System.Nullable`1[System.Boolean]", "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "ResourceGroupName": "System.String", "MinimumTlsVersion": "System.String", - "StorageAccountName": "System.String", "Kind": "System.String", + "Id": "System.String", "Location": "System.String", - "SecondaryLocation": "System.String", "LargeFileSharesState": "System.String", - "PrimaryLocation": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String" + "StorageAccountName": "System.String", + "SecondaryLocation": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -58042,7 +60030,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UpdateHistory": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]", "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", @@ -58095,7 +60083,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty", "GenericTypeArguments": [], @@ -58105,7 +60093,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Timestamp": "System.Nullable`1[System.DateTime]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -58171,7 +60159,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]", "HasLegalHold": "System.Nullable`1[System.Boolean]" @@ -58221,7 +60209,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty", "GenericTypeArguments": [], @@ -58231,7 +60219,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Timestamp": "System.Nullable`1[System.DateTime]", "Tag": "System.String", @@ -58284,7 +60272,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -58296,7 +60284,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -58547,7 +60535,7 @@ "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Days": "System.Nullable`1[System.Int32]" @@ -58611,7 +60599,7 @@ "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=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "LastEnabledTime": "System.Nullable`1[System.DateTime]", @@ -58685,7 +60673,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "RetentionInDays": "System.Nullable`1[System.Int32]" @@ -58745,7 +60733,7 @@ "Microsoft.Azure.Management.Storage.Models.ChangeFeed": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ChangeFeed", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ChangeFeed, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ChangeFeed, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "RetentionInDays": "System.Nullable`1[System.Int32]" @@ -58809,7 +60797,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CorsRulesProperty": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]" }, @@ -58868,7 +60856,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule", "GenericTypeArguments": [], @@ -58878,7 +60866,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaxAgeInSeconds": "System.Int32", "AllowedOrigins": "System.String[]", @@ -58941,7 +60929,7 @@ "Microsoft.Azure.Management.Storage.Models.CorsRule": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.CorsRule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CorsRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CorsRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedOrigins": "System.Collections.Generic.IList`1[System.String]", "AllowedMethods": "System.Collections.Generic.IList`1[System.String]", @@ -59020,7 +61008,7 @@ "Microsoft.Azure.Management.Storage.Models.CorsRules": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.CorsRules", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CorsRules, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CorsRules, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CorsRulesProperty": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.CorsRule]" }, @@ -59074,7 +61062,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.CorsRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.CorsRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.CorsRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.CorsRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -59086,7 +61074,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Days": "System.Nullable`1[System.Int32]" @@ -59146,7 +61134,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "MinRestoreTime": "System.Nullable`1[System.DateTime]", @@ -59207,7 +61195,7 @@ "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ChangeFeed": "Microsoft.Azure.Management.Storage.Models.ChangeFeed", "Cors": "Microsoft.Azure.Management.Storage.Models.CorsRules", @@ -59326,7 +61314,7 @@ "Microsoft.Azure.Management.Storage.Models.LastAccessTimeTrackingPolicy": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.LastAccessTimeTrackingPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.LastAccessTimeTrackingPolicy, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.LastAccessTimeTrackingPolicy, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "BlobType": "System.Collections.Generic.IList`1[System.String]", @@ -59400,7 +61388,7 @@ "Microsoft.Azure.Management.Storage.Models.FileServiceProperties": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.FileServiceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.FileServiceProperties, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.FileServiceProperties, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Cors": "Microsoft.Azure.Management.Storage.Models.CorsRules", "ShareDeleteRetentionPolicy": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy", @@ -59489,7 +61477,7 @@ "Microsoft.Azure.Management.Storage.Models.ProtocolSettings": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ProtocolSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ProtocolSettings, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ProtocolSettings, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Smb": "Microsoft.Azure.Management.Storage.Models.SmbSetting" }, @@ -59543,7 +61531,7 @@ "Microsoft.Azure.Management.Storage.Models.SmbSetting": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.SmbSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SmbSetting, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SmbSetting, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Multichannel": "Microsoft.Azure.Management.Storage.Models.Multichannel", "Versions": "System.String", @@ -59617,7 +61605,7 @@ "Microsoft.Azure.Management.Storage.Models.Multichannel": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.Multichannel", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Multichannel, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Multichannel, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]" }, @@ -59683,7 +61671,7 @@ "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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TierToCool": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification", "TierToArchive": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification", @@ -59744,7 +61732,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysAfterModificationGreaterThan": "System.Nullable`1[System.Int32]" }, @@ -59813,7 +61801,7 @@ "Microsoft.Azure.Management.Storage.Models.DateAfterModification": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.DateAfterModification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DateAfterModification, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DateAfterModification, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysAfterModificationGreaterThan": "System.Nullable`1[System.Double]", "DaysAfterLastAccessTimeGreaterThan": "System.Nullable`1[System.Double]" @@ -59889,7 +61877,7 @@ "Microsoft.Azure.Management.Storage.Models.ManagementPolicyBaseBlob": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyBaseBlob", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyBaseBlob, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyBaseBlob, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TierToCool": "Microsoft.Azure.Management.Storage.Models.DateAfterModification", "TierToArchive": "Microsoft.Azure.Management.Storage.Models.DateAfterModification", @@ -59963,7 +61951,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Delete": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation", "TierToCool": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation", @@ -60024,7 +62012,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysAfterCreationGreaterThan": "System.Int32" }, @@ -60093,7 +62081,7 @@ "Microsoft.Azure.Management.Storage.Models.DateAfterCreation": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.DateAfterCreation", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DateAfterCreation, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DateAfterCreation, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysAfterCreationGreaterThan": "System.Double" }, @@ -60152,7 +62140,7 @@ "Microsoft.Azure.Management.Storage.Models.ManagementPolicySnapShot": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ManagementPolicySnapShot", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicySnapShot, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicySnapShot, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TierToCool": "Microsoft.Azure.Management.Storage.Models.DateAfterCreation", "TierToArchive": "Microsoft.Azure.Management.Storage.Models.DateAfterCreation", @@ -60221,7 +62209,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyVersion": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyVersion, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyVersion, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Delete": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation", "TierToCool": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation", @@ -60282,7 +62270,7 @@ "Microsoft.Azure.Management.Storage.Models.ManagementPolicyVersion": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyVersion, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyVersion, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TierToCool": "Microsoft.Azure.Management.Storage.Models.DateAfterCreation", "TierToArchive": "Microsoft.Azure.Management.Storage.Models.DateAfterCreation", @@ -60351,7 +62339,7 @@ "Microsoft.Azure.Management.Storage.Models.ManagementPolicyAction": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyAction, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyAction, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Management.Storage.Models.ManagementPolicySnapShot", @@ -60420,7 +62408,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule", "GenericTypeArguments": [], @@ -60430,7 +62418,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter", "RuleId": "System.String", @@ -60512,7 +62500,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrefixMatch": "System.String[]" }, @@ -60571,7 +62559,7 @@ "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyFilter": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyFilter, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyFilter, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrefixMatch": "System.Collections.Generic.IList`1[System.String]", "MinCreationTime": "System.String" @@ -60630,7 +62618,7 @@ "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Filters": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyFilter", "RuleId": "System.String", @@ -60704,7 +62692,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -60716,7 +62704,7 @@ "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicy": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicy, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicy, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule]", "EnabledTime": "System.Nullable`1[System.DateTime]", @@ -60810,7 +62798,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.ObjectReplicationPolicyRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -60822,7 +62810,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy", "GenericTypeArguments": [], @@ -60832,7 +62820,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]", "EnabledTime": "System.Nullable`1[System.DateTime]", @@ -60926,7 +62914,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.KeyPermission]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.KeyPermission]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.KeyPermission, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.KeyPermission, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -60938,7 +62926,7 @@ "Microsoft.Azure.Management.Storage.Models.KeyPermission": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.KeyPermission", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.KeyPermission, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.KeyPermission, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61033,7 +63021,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -61043,7 +63031,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition", "Enabled": "System.Nullable`1[System.Boolean]", @@ -61124,7 +63112,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Actions": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", "Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter" @@ -61194,7 +63182,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", @@ -61255,7 +63243,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=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -61335,7 +63323,7 @@ "Microsoft.Azure.Management.Storage.Models.ManagementPolicyFilter": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyFilter, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyFilter, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobIndexMatch": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.TagFilter]", "BlobTypes": "System.Collections.Generic.IList`1[System.String]", @@ -61404,7 +63392,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.TagFilter]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.TagFilter]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.TagFilter, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.TagFilter, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -61416,7 +63404,7 @@ "Microsoft.Azure.Management.Storage.Models.TagFilter": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.TagFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.TagFilter, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.TagFilter, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Op": "System.String", @@ -61497,7 +63485,7 @@ "Microsoft.Azure.Management.Storage.Models.ManagementPolicyDefinition": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyDefinition, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyDefinition, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Actions": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyAction", "Filters": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyFilter" @@ -61561,7 +63549,7 @@ "Microsoft.Azure.Management.Storage.Models.ManagementPolicyRule": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Definition": "Microsoft.Azure.Management.Storage.Models.ManagementPolicyDefinition", "Enabled": "System.Nullable`1[System.Boolean]", @@ -61631,7 +63619,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Management.Storage.Models.ManagementPolicyRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Storage.Models.ManagementPolicyRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Storage.Models.ManagementPolicyRule, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Storage.Models.ManagementPolicyRule, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -61643,7 +63631,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSEncryptionScopeKeyVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "keyUri": "System.String" }, @@ -61692,7 +63680,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Reason]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Reason]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.Reason, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.Reason, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -61704,7 +63692,7 @@ "Microsoft.Azure.Management.Storage.Models.Reason": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.Reason", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Reason, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Reason, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61799,7 +63787,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.UsageUnit]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.UsageUnit]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.UsageUnit, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.UsageUnit, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -61811,7 +63799,7 @@ "Microsoft.Azure.Management.Storage.Models.UsageUnit": { "Namespace": "Microsoft.Azure.Management.Storage.Models", "Name": "Microsoft.Azure.Management.Storage.Models.UsageUnit", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.UsageUnit, Microsoft.Azure.Management.Storage, Version=19.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.UsageUnit, Microsoft.Azure.Management.Storage, Version=21.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json index de2d20ffee4f..b23bcf9ae14a 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -507,7 +507,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -674,7 +674,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -878,7 +878,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -1345,7 +1345,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CloudTable": "Microsoft.Azure.Cosmos.Table.CloudTable", @@ -3568,7 +3568,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CloudTable": "Microsoft.Azure.Cosmos.Table.CloudTable", @@ -4906,7 +4906,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QueueProperties": "Azure.Storage.Queues.Models.QueueProperties", "QueueClient": "Azure.Storage.Queues.QueueClient", @@ -5365,7 +5365,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QueueProperties": "Azure.Storage.Queues.Models.QueueProperties", "QueueClient": "Azure.Storage.Queues.QueueClient", @@ -17516,7 +17516,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OpenTime": "System.DateTimeOffset", "ClientPort": "System.Int32", @@ -18110,7 +18110,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OpenTime": "System.DateTimeOffset", "ClientPort": "System.Int32", @@ -22397,7 +22397,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OpenTime": "System.DateTimeOffset", "ClientPort": "System.Int32", @@ -30462,7 +30462,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -38439,7 +38439,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -70115,7 +70115,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OpenTime": "System.DateTimeOffset", "ClientPort": "System.Int32", @@ -89391,7 +89391,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties", "ShareClient": "Azure.Storage.Files.Shares.ShareClient", @@ -90781,7 +90781,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ShareDirectoryProperties": "Azure.Storage.Files.Shares.Models.ShareDirectoryProperties", "ShareDirectoryClient": "Azure.Storage.Files.Shares.ShareDirectoryClient", @@ -116725,7 +116725,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties", "ShareClient": "Azure.Storage.Files.Shares.ShareClient", @@ -119029,7 +119029,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ShareDirectoryProperties": "Azure.Storage.Files.Shares.Models.ShareDirectoryProperties", "ShareDirectoryClient": "Azure.Storage.Files.Shares.ShareDirectoryClient", @@ -127081,7 +127081,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -146373,7 +146373,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties", "ShareClient": "Azure.Storage.Files.Shares.ShareClient", @@ -151679,7 +151679,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -160122,7 +160122,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties", "ShareClient": "Azure.Storage.Files.Shares.ShareClient", @@ -165538,7 +165538,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -241041,7 +241041,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "RetentionDays": "System.Nullable`1[System.Int32]" @@ -241299,7 +241299,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "IndexDocument": "System.String", @@ -241556,7 +241556,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "RetentionDays": "System.Nullable`1[System.Int32]" @@ -241860,7 +241860,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "IndexDocument": "System.String", @@ -242201,7 +242201,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaxAgeInSeconds": "System.Int32", "AllowedOrigins": "System.String[]", @@ -242278,7 +242278,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242511,7 +242511,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242851,7 +242851,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -243020,7 +243020,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -243278,7 +243278,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -243381,7 +243381,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -243550,7 +243550,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -243659,7 +243659,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -243852,7 +243852,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Logging": "Microsoft.Azure.Storage.Shared.Protocol.LoggingProperties", "HourMetrics": "Microsoft.Azure.Storage.Shared.Protocol.MetricsProperties", @@ -243926,7 +243926,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -244095,7 +244095,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245103,7 +245103,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage", "Name": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "TableStorageAccount": "Microsoft.Azure.Cosmos.Table.CloudStorageAccount", @@ -246279,7 +246279,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246512,7 +246512,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246787,7 +246787,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaxAgeInSeconds": "System.Int32", "AllowedOrigins": "System.String[]", @@ -246864,7 +246864,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246967,7 +246967,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", "GenericTypeArguments": [], @@ -247133,7 +247133,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247242,7 +247242,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", "GenericTypeArguments": [], @@ -247521,7 +247521,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247766,7 +247766,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -248124,7 +248124,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -248227,7 +248227,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -248474,7 +248474,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -248583,7 +248583,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -248878,7 +248878,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Logging": "Microsoft.Azure.Storage.Shared.Protocol.LoggingProperties", "HourMetrics": "Microsoft.Azure.Storage.Shared.Protocol.MetricsProperties", @@ -248952,7 +248952,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249157,7 +249157,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249398,7 +249398,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient", "AccessPolicy": "Azure.Storage.Blobs.Models.BlobContainerAccessPolicy", @@ -250104,7 +250104,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryOutput", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryOutput, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryOutput, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobQueryError": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[]", "FailureCount": "System.Int32", @@ -252168,7 +252168,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -252220,7 +252220,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -253601,7 +253601,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -253659,7 +253659,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -254828,7 +254828,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -254886,7 +254886,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -255297,7 +255297,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -255355,7 +255355,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -255668,7 +255668,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -255726,7 +255726,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", "RecordSeparator": "System.String" @@ -273738,7 +273738,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -290417,7 +290417,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -294727,7 +294727,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -296999,7 +296999,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -330084,7 +330084,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient", "AccessPolicy": "Azure.Storage.Blobs.Models.BlobContainerAccessPolicy", @@ -348729,7 +348729,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient", "AccessPolicy": "Azure.Storage.Blobs.Models.BlobContainerAccessPolicy", @@ -352572,7 +352572,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -415771,7 +415771,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -462267,7 +462267,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -477701,7 +477701,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -478300,7 +478300,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -478437,7 +478437,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -478942,7 +478942,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -479453,7 +479453,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -479788,7 +479788,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -479925,7 +479925,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -480342,7 +480342,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -480753,7 +480753,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -482060,7 +482060,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -482186,7 +482186,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -482414,7 +482414,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -482673,7 +482673,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -483090,7 +483090,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -483501,7 +483501,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -483627,7 +483627,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -483855,7 +483855,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -484059,7 +484059,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -484185,7 +484185,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -484413,7 +484413,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -484617,7 +484617,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -484754,7 +484754,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -484944,7 +484944,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -485196,7 +485196,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -485297,7 +485297,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -485523,7 +485523,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -485744,7 +485744,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -485983,7 +485983,7 @@ "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -486528,7 +486528,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -486538,7 +486538,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -555283,7 +555283,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "RetentionDays": "System.Nullable`1[System.Int32]" @@ -555338,7 +555338,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "IndexDocument": "System.String", @@ -555404,7 +555404,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", "GenericTypeArguments": [], @@ -555414,7 +555414,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaxAgeInSeconds": "System.Int32", "AllowedOrigins": "System.String[]", @@ -555849,7 +555849,7 @@ "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage", "Name": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "TableStorageAccount": "Microsoft.Azure.Cosmos.Table.CloudStorageAccount", @@ -555923,7 +555923,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -561849,7 +561849,7 @@ "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[]": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError", "GenericTypeArguments": [], @@ -561859,7 +561859,7 @@ "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsFatal": "System.Boolean", "Position": "System.Int64", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll.json index 776ad5aa7194..718e539f1ae0 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll.json @@ -89,7 +89,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -473,7 +473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -793,7 +793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -997,7 +997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -1324,7 +1324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -1574,7 +1574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -1926,7 +1926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -2386,7 +2386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoleAssignmentId": "System.String", "RoleDefinitionId": "System.String", @@ -2466,7 +2466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -2655,7 +2655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2890,7 +2890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3142,7 +3142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3394,7 +3394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3735,7 +3735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3912,7 +3912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -4044,7 +4044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4221,7 +4221,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -4353,7 +4353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4530,7 +4530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -4662,7 +4662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4839,7 +4839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -4988,7 +4988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -5117,7 +5117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5345,7 +5345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsBuiltIn": "System.Boolean", "Permissions": "System.Collections.Generic.IReadOnlyList`1[Azure.Analytics.Synapse.AccessControl.Models.SynapseRbacPermission]", @@ -5427,7 +5427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -5761,7 +5761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -5910,7 +5910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -6110,7 +6110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsBuiltIn": "System.Boolean", "Permissions": "System.Collections.Generic.IReadOnlyList`1[Azure.Analytics.Synapse.AccessControl.Models.SynapseRbacPermission]", @@ -6192,7 +6192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -6416,7 +6416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -6616,7 +6616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoleAssignmentId": "System.String", "RoleDefinitionId": "System.String", @@ -6696,7 +6696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -6867,7 +6867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6982,109 +6982,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", "AliasList": [], @@ -7223,7 +7120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7351,12 +7248,155 @@ }, { "ParameterMetadata": { - "Name": "PrincipalType", + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "NewByWorkspaceNameAndIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "WorkspaceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "RoleDefinitionName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ObjectId", + "AliasList": [ + "Id", + "PrincipalId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ItemType", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7458,6 +7498,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Item", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -7524,7 +7588,7 @@ ] }, { - "Name": "NewByWorkspaceNameAndIdParameterSet", + "Name": "NewByWorkspaceNameAndRoleDefinitionIdAndObjectIdParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -7552,7 +7616,7 @@ }, { "ParameterMetadata": { - "Name": "RoleDefinitionName", + "Name": "RoleDefinitionId", "AliasList": [], "Type": { "Namespace": "System", @@ -7608,7 +7672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7734,115 +7798,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", @@ -7909,7 +7864,7 @@ ] }, { - "Name": "NewByWorkspaceNameAndRoleDefinitionIdAndObjectIdParameterSet", + "Name": "NewByWorkspaceNameAndServicePrincipalNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -7937,7 +7892,7 @@ }, { "ParameterMetadata": { - "Name": "RoleDefinitionId", + "Name": "RoleDefinitionName", "AliasList": [], "Type": { "Namespace": "System", @@ -7961,11 +7916,8 @@ }, { "ParameterMetadata": { - "Name": "ObjectId", - "AliasList": [ - "Id", - "PrincipalId" - ], + "Name": "ServicePrincipalName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -7993,7 +7945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8119,115 +8071,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", @@ -8294,469 +8137,87 @@ ] }, { - "Name": "NewByWorkspaceNameAndServicePrincipalNameParameterSet", + "Name": "NewByWorkspaceObjectAndNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "WorkspaceName", + "Name": "WorkspaceObject", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Synapse.Models", + "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", + "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", + "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity", + "ManagedVirtualNetworkSettings": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", + "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile", + "ExtraProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]", + "Tags": "System.Collections.Hashtable", + "Id": "System.String", + "Location": "System.String", + "TagsTable": "System.String", + "WorkspaceUID": "System.String", + "ManagedVirtualNetwork": "System.String", + "SqlAdministratorLogin": "System.String", + "ProvisioningState": "System.String", + "ManagedResourceGroupName": "System.String", + "Name": "System.String", + "Type": "System.String" + }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "workspace", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoleDefinitionName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ServicePrincipalName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, 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": "ItemType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "Item", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.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": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "NewByWorkspaceObjectAndNameParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "WorkspaceObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", - "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", - "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity", - "ManagedVirtualNetworkSettings": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile", - "ExtraProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", - "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]", - "Tags": "System.Collections.Hashtable", - "Id": "System.String", - "Location": "System.String", - "TagsTable": "System.String", - "WorkspaceUID": "System.String", - "ManagedVirtualNetwork": "System.String", - "SqlAdministratorLogin": "System.String", - "ProvisioningState": "System.String", - "ManagedResourceGroupName": "System.String", - "Name": "System.String", - "Type": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "workspace", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -8817,7 +8278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8943,115 +8404,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", @@ -9127,7 +8479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -9259,7 +8611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9385,115 +8737,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", @@ -9569,7 +8812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -9701,7 +8944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9827,115 +9070,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", @@ -10011,7 +9145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -10140,7 +9274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10266,115 +9400,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", @@ -10450,7 +9475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10576,115 +9601,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PrincipalType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Synapse.Models", - "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "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": "AsJob", @@ -10804,7 +9720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -10993,7 +9909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11404,7 +10320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11704,7 +10620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12004,7 +10920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12301,7 +11217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12526,7 +11442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -12723,7 +11639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -12855,7 +11771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13080,7 +11996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -13212,7 +12128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13437,7 +12353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -13569,7 +12485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13794,7 +12710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -13923,7 +12839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SynapseConstants+WorkspaceItemType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14247,7 +13163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.DataFlow", "WorkspaceName": "System.String", @@ -14332,7 +13248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -14560,7 +13476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -14825,7 +13741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -14920,7 +13836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.DataFlow", "WorkspaceName": "System.String", @@ -15245,7 +14161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -15468,7 +14384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.DataFlow", "WorkspaceName": "System.String", @@ -15779,7 +14695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.DataFlow", "WorkspaceName": "System.String", @@ -15864,7 +14780,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -16180,7 +15096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -16510,7 +15426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Dataset", "WorkspaceName": "System.String", @@ -16595,7 +15511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -16823,7 +15739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -17088,7 +16004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -17183,7 +16099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Dataset", "WorkspaceName": "System.String", @@ -17508,7 +16424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -17731,7 +16647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Dataset", "WorkspaceName": "System.String", @@ -18042,7 +16958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Dataset", "WorkspaceName": "System.String", @@ -18127,7 +17043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -18443,7 +17359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -18773,7 +17689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.LinkedService", "WorkspaceName": "System.String", @@ -18858,7 +17774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -19086,7 +18002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -19351,7 +18267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -19446,7 +18362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.LinkedService", "WorkspaceName": "System.String", @@ -19771,7 +18687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -19994,7 +18910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.LinkedService", "WorkspaceName": "System.String", @@ -20305,7 +19221,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.LinkedService", "WorkspaceName": "System.String", @@ -20390,7 +19306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -20706,7 +19622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -21073,7 +19989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -21168,7 +20084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook", "WorkspaceName": "System.String", @@ -21451,7 +20367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -21650,7 +20566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook", "WorkspaceName": "System.String", @@ -21913,7 +20829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook", "WorkspaceName": "System.String", @@ -21998,7 +20914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -22226,7 +21142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -22491,7 +21407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -22586,7 +21502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook", "WorkspaceName": "System.String", @@ -22911,7 +21827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -23134,7 +22050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook", "WorkspaceName": "System.String", @@ -23445,7 +22361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook", "WorkspaceName": "System.String", @@ -23530,7 +22446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -24124,7 +23040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -24325,7 +23241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -24732,7 +23648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRunsQueryResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRunsQueryResponse, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRunsQueryResponse, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Synapse.Models.PSActivityRun]", "ContinuationToken": "System.String" @@ -24809,7 +23725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -25243,7 +24159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -25707,7 +24623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy", "Values": "System.Collections.Generic.IEnumerable`1[System.Object]", @@ -25801,7 +24717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -26219,7 +25135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -26368,7 +25284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -26616,7 +25532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSCreateRunResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSCreateRunResponse, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSCreateRunResponse, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RunId": "System.String" }, @@ -26684,7 +25600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]", @@ -26781,7 +25697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -27021,7 +25937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]", @@ -27530,7 +26446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -28055,7 +26971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -28148,7 +27064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy", "Values": "System.Collections.Generic.IEnumerable`1[System.Object]", @@ -28438,7 +27354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -28635,7 +27551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy", "Values": "System.Collections.Generic.IEnumerable`1[System.Object]", @@ -28907,7 +27823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]", @@ -29005,7 +27921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -29233,7 +28149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -29498,7 +28414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -29593,7 +28509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]", @@ -29931,7 +28847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -30296,7 +29212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]", @@ -30530,7 +29446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]", @@ -30628,7 +29544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -30944,7 +29860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -31274,7 +30190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "System.Nullable`1[Azure.Analytics.Synapse.Artifacts.Models.EventSubscriptionStatus]", "TriggerName": "System.String" @@ -31351,7 +30267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -31446,7 +30362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -31687,7 +30603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -31862,7 +30778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -32077,7 +30993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -32162,7 +31078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -32390,7 +31306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -32618,7 +31534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Values": "System.Collections.Generic.IEnumerable`1[System.Object]", "Keys": "System.Collections.Generic.IEnumerable`1[System.String]", @@ -32703,7 +31619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -33015,7 +31931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -33339,7 +32255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "System.Nullable`1[Azure.Analytics.Synapse.Artifacts.Models.EventSubscriptionStatus]", "TriggerName": "System.String" @@ -33416,7 +32332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -33511,7 +32427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -33710,7 +32626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -33861,7 +32777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -34065,7 +32981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -34160,7 +33076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -34485,7 +33401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -34708,7 +33624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -35056,7 +33972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -35151,7 +34067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -35476,7 +34392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -35699,7 +34615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -36010,7 +34926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -36095,7 +35011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -36411,7 +35327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -36778,7 +35694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -36873,7 +35789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -37156,7 +36072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -37355,7 +36271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -37655,7 +36571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -37750,7 +36666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -38033,7 +36949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -38232,7 +37148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Azure.Analytics.Synapse.Artifacts.Models.Trigger", "WorkspaceName": "System.String", @@ -38495,7 +37411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -38607,7 +37523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -38941,7 +37857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -39244,7 +38160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -39317,7 +38233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -39653,7 +38569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -39850,7 +38766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -40148,7 +39064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -40260,7 +39176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -40868,7 +39784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -41326,7 +40242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -41399,7 +40315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -41735,7 +40651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -41932,7 +40848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -42230,7 +41146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -42357,7 +41273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -42691,7 +41607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -43014,7 +41930,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -43087,7 +42003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -43444,7 +42360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -43615,7 +42531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -43902,7 +42818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -43993,7 +42909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -44279,7 +43195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -45160,7 +44076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -45233,7 +44149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -45590,7 +44506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -45761,7 +44677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -46048,7 +44964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkStatement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkStatement, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkStatement, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Synapse.Models.PSLivyStatementOutput", "Id": "System.Nullable`1[System.Int32]", @@ -46145,7 +45061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -46454,7 +45370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -46695,7 +45611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseExtendedSparkStatement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseExtendedSparkStatement, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseExtendedSparkStatement, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Synapse.Models.PSLivyStatementOutput", "Id": "System.Nullable`1[System.Int32]", @@ -46819,7 +45735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -47510,7 +46426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -47778,7 +46694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -48168,7 +47084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -48561,7 +47477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", "Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", @@ -48874,7 +47790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "WorkspaceName": "System.String", @@ -48965,7 +47881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -49231,7 +48147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -49549,7 +48465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "WorkspaceName": "System.String", @@ -49640,7 +48556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -49990,7 +48906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -50452,7 +49368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAdvancedDataSecurityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "WorkspaceName": "System.String", @@ -50543,7 +49459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -50767,7 +49683,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -51011,7 +49927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", "BlobStorageTargetState": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType", @@ -51107,7 +50023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -51331,7 +50247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -51577,7 +50493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", "BlobStorageTargetState": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType", @@ -51693,7 +50609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -51768,7 +50684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -52048,7 +50964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -52173,7 +51089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -52482,7 +51398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -52790,7 +51706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -53253,7 +52169,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -53328,7 +52244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -53692,7 +52608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -53865,7 +52781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -54263,7 +53179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", "BlobStorageTargetState": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType", @@ -54359,7 +53275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -54452,7 +53368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -54691,7 +53607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -54935,7 +53851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -55016,7 +53932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -55284,7 +54200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -55528,7 +54444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -55781,7 +54697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", "BlobStorageTargetState": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType", @@ -55897,7 +54813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -55972,7 +54888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -56073,7 +54989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -56354,7 +55270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -56646,7 +55562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -56727,7 +55643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -56995,7 +55911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -57084,7 +56000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -57376,7 +56292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -57644,7 +56560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -57942,7 +56858,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -58051,7 +56967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -58265,7 +57181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -58654,7 +57570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -59027,7 +57943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -59136,7 +58052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -59350,7 +58266,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -59739,7 +58655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -60091,7 +59007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -60201,7 +59117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -60747,7 +59663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -60904,7 +59820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -61208,7 +60124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -61318,7 +60234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -61598,7 +60514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -61849,7 +60765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -61958,7 +60874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -62170,7 +61086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -62559,7 +61475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -62966,7 +61882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -63075,7 +61991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -63619,7 +62535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -63872,7 +62788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", "WorkspaceName": "System.String", @@ -64124,7 +63040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIpAddress": "System.String", "ProvisioningState": "System.String", @@ -64220,7 +63136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -64472,7 +63388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -64674,7 +63590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIpAddress": "System.String", "ProvisioningState": "System.String", @@ -64770,7 +63686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -65464,7 +64380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -65687,7 +64603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -65860,7 +64776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -66108,7 +65024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIpAddress": "System.String", "ProvisioningState": "System.String", @@ -66204,7 +65120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -66582,7 +65498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -66880,7 +65796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -67007,7 +65923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -67100,7 +66016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -67395,7 +66311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -67636,7 +66552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -67855,7 +66771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthKey1": "System.String", "AuthKey2": "System.String" @@ -67974,7 +66890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -68067,7 +66983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -68320,7 +67236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -68513,7 +67429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -68684,7 +67600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeMetrics", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.IntegrationRuntimeNodeMonitoringData]", "IntegrationRuntimeName": "System.String", @@ -68814,7 +67730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -68907,7 +67823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -69160,7 +68076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -69353,7 +68269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -69524,7 +68440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.ManagedIntegrationRuntimeError]", "ResourceGroupName": "System.String", @@ -69600,7 +68516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "IsActiveDispatcher": "System.Nullable`1[System.Boolean]", @@ -69753,7 +68669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -69846,7 +68762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -70179,7 +69095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -70468,7 +69384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -70810,7 +69726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -70903,7 +69819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -71156,7 +70072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -71349,7 +70265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -71520,7 +70436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthKey1": "System.String", "AuthKey2": "System.String" @@ -71639,7 +70555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -71732,7 +70648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -72075,7 +70991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -72370,7 +71286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -72718,7 +71634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -72811,7 +71727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -73106,7 +72022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -73347,7 +72263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -73639,7 +72555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -73732,7 +72648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -74065,7 +72981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -74354,7 +73270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -74621,7 +73537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -74748,7 +73664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -74841,7 +73757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -76379,7 +75295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -77127,7 +76043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -78183,7 +77099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -78900,7 +77816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -79318,7 +78234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -79411,7 +78327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -79702,7 +78618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -79943,7 +78859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -80162,7 +79078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.LinkedIntegrationRuntime]", @@ -80312,7 +79228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -80405,7 +79321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -80748,7 +79664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -81047,7 +79963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -81324,7 +80240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.LinkedIntegrationRuntime]", @@ -81474,7 +80390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -81567,7 +80483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -81900,7 +80816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -82189,7 +81105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -82456,7 +81372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentitySqlControlSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentitySqlControlSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentitySqlControlSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DesiredState": "System.String", "ActualState": "System.String", @@ -82554,7 +81470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -82778,7 +81694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -83022,7 +81938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentitySqlControlSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentitySqlControlSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentitySqlControlSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DesiredState": "System.String", "ActualState": "System.String", @@ -83120,7 +82036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -83386,7 +82302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -83702,7 +82618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -83832,7 +82748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -84108,7 +83024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -84352,7 +83268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -84462,7 +83378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -85432,7 +84348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -85803,7 +84719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -86474,7 +85390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -86549,7 +85465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -86949,7 +85865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -87146,7 +86062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -87677,7 +86593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -87975,7 +86891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -88131,7 +87047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -88261,7 +87177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -88336,7 +87252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -89088,7 +88004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -89485,7 +88401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", @@ -90543,7 +89459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData", "Tags": "System.Collections.Hashtable", @@ -90663,7 +89579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -90935,7 +89851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -91179,7 +90095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData", "Tags": "System.Collections.Hashtable", @@ -91281,7 +90197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -91697,7 +90613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -92138,7 +91054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -92213,7 +91129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData", "Tags": "System.Collections.Hashtable", @@ -92601,7 +91517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -92798,7 +91714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData", "Tags": "System.Collections.Hashtable", @@ -93321,7 +92237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -93619,7 +92535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -93775,7 +92691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData", "Tags": "System.Collections.Hashtable", @@ -93913,7 +92829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -93988,7 +92904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData", "Tags": "System.Collections.Hashtable", @@ -94424,7 +93340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -94621,7 +93537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData", "Tags": "System.Collections.Hashtable", @@ -95047,7 +93963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRestorableDroppedSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorableDroppedSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorableDroppedSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "DeletionDate": "System.Nullable`1[System.DateTime]", @@ -95560,7 +94476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRecoverableSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRecoverableSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRecoverableSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastAvailableBackupDate": "System.Nullable`1[System.DateTime]", "Edition": "System.String", @@ -95970,7 +94886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestorePointType": "System.Nullable`1[Microsoft.Azure.Management.Synapse.Models.RestorePointType]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -96089,7 +95005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -96164,7 +95080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -96444,7 +95360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -96569,7 +95485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -96821,7 +95737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestorePointType": "System.Nullable`1[Microsoft.Azure.Management.Synapse.Models.RestorePointType]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -96940,7 +95856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -97015,7 +95931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -97379,7 +96295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -97552,7 +96468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -97948,7 +96864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -98104,7 +97020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -98526,7 +97442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -98989,7 +97905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -99339,7 +98255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSVulnerabilityAssessmentScanExportModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "WorkspaceName": "System.String", @@ -99489,7 +98405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel]", @@ -99730,7 +98646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel]", @@ -99893,7 +98809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -100051,7 +98967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -100351,7 +99267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -100667,7 +99583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel]", @@ -100802,7 +99718,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -101132,7 +100048,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -101296,7 +100212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -101416,7 +100332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -101878,7 +100794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -102391,7 +101307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -102466,7 +101382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -102900,7 +101816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -103261,7 +102177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -103661,7 +102577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -103801,7 +102717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -103876,7 +102792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -104244,7 +103160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -104417,7 +103333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -104813,7 +103729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel]", @@ -104872,7 +103788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.PSVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel]", @@ -105007,7 +103923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -105311,7 +104227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -105543,7 +104459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -105683,7 +104599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -105758,7 +104674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -106126,7 +105042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -106299,7 +105215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -106788,7 +105704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -107138,7 +106054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -107320,7 +106236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -107478,7 +106394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -107553,7 +106469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -108029,7 +106945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -108390,7 +107306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -108893,7 +107809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -109201,7 +108117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -109664,7 +108580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -109739,7 +108655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -110103,7 +109019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -110276,7 +109192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -110674,7 +109590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSServerSecurityAlertPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSServerSecurityAlertPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSServerSecurityAlertPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Synapse.Models.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -110788,7 +109704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -111012,7 +109928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -111256,7 +110172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSqlPoolSecurityAlertPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSqlPoolSecurityAlertPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSqlPoolSecurityAlertPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Synapse.Models.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -111388,7 +110304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -111463,7 +110379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -111743,7 +110659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -111868,7 +110784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -112120,7 +111036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSServerSecurityAlertPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSServerSecurityAlertPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSServerSecurityAlertPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Synapse.Models.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -112234,7 +111150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -112726,7 +111642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -113426,7 +112342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSqlPoolSecurityAlertPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSqlPoolSecurityAlertPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSqlPoolSecurityAlertPolicy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Synapse.Models.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -113558,7 +112474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -113633,7 +112549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -114181,7 +113097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -114458,7 +113374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -115166,7 +114082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTransparentDataEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTransparentDataEncryption, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTransparentDataEncryption, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", "ResourceGroupName": "System.String", @@ -115293,7 +114209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -115368,7 +114284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -115648,7 +114564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -115773,7 +114689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -116025,7 +114941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSTransparentDataEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTransparentDataEncryption, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTransparentDataEncryption, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", "ResourceGroupName": "System.String", @@ -116152,7 +115068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -116227,7 +115143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -116328,7 +115244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -116560,7 +115476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -116761,7 +115677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -116842,7 +115758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -117019,7 +115935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -117108,7 +116024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -117309,7 +116225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -117486,7 +116402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -117670,7 +116586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -117779,7 +116695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -118121,7 +117037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -118383,7 +117299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -118492,7 +117408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -118834,7 +117750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -119096,7 +118012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -119205,7 +118121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -119603,7 +118519,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -119960,7 +118876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -120035,7 +118951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -120403,7 +119319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -120576,7 +119492,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -121029,7 +119945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -121337,7 +120253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -121727,7 +120643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -121860,7 +120776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -121935,7 +120851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -122219,7 +121135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -122344,7 +121260,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -122596,7 +121512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -122704,7 +121620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -122928,7 +121844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -123172,7 +122088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -123305,7 +122221,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -123380,7 +122296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -123535,7 +122451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -123855,7 +122771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -124180,7 +123096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -124433,7 +123349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -124562,7 +123478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -124815,7 +123731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -124920,7 +123836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -125147,7 +124063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -125284,7 +124200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -125511,7 +124427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -125624,7 +124540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -125923,7 +124839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126198,7 +125114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126425,7 +125341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126659,7 +125575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -126767,7 +125683,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -126914,7 +125830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127208,7 +126124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127507,7 +126423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127734,7 +126650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -127863,7 +126779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128090,7 +127006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -128195,7 +127111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128494,7 +127410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128769,7 +127685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128996,7 +127912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -129230,7 +128146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceAadAdminInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceAadAdminInfo, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceAadAdminInfo, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "WorkspaceName": "System.String", @@ -129335,7 +128251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -129559,7 +128475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -129858,7 +128774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -130208,7 +129124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -130668,7 +129584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceAadAdminInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceAadAdminInfo, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceAadAdminInfo, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "WorkspaceName": "System.String", @@ -130773,7 +129689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -131123,7 +130039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -131658,7 +130574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -131733,7 +130649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsActiveCustomerManagedKey": "System.Boolean", "KeyVaultUrl": "System.String", @@ -132121,7 +131037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -132318,7 +131234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsActiveCustomerManagedKey": "System.Boolean", "KeyVaultUrl": "System.String", @@ -132764,7 +131680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsActiveCustomerManagedKey": "System.Boolean", "KeyVaultUrl": "System.String", @@ -132882,7 +131798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -132957,7 +131873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsActiveCustomerManagedKey": "System.Boolean", "KeyVaultUrl": "System.String", @@ -133345,7 +132261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -133542,7 +132458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsActiveCustomerManagedKey": "System.Boolean", "KeyVaultUrl": "System.String", @@ -133988,7 +132904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -134565,7 +133481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -134679,7 +133595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -134808,7 +133724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -135045,7 +133961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -135207,7 +134123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -135336,7 +134252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -135570,7 +134486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -135780,7 +134696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -136042,7 +134958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -136125,7 +135041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestorePointType": "System.Nullable`1[Microsoft.Azure.Management.Synapse.Models.RestorePointType]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -136538,7 +135454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", "Tags": "System.Collections.Hashtable", @@ -136743,7 +135659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestorePointType": "System.Nullable`1[Microsoft.Azure.Management.Synapse.Models.RestorePointType]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -137192,7 +136108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsActiveCustomerManagedKey": "System.Boolean", "KeyVaultUrl": "System.String", @@ -137310,7 +136226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -137586,7 +136502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -137830,7 +136746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -138069,7 +136985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -138145,7 +137061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -138295,7 +137211,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -138475,7 +137391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey", "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceKey.PSWorkspaceKey, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsActiveCustomerManagedKey": "System.Boolean", "KeyVaultUrl": "System.String", @@ -138573,7 +137489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -138909,7 +137825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", "Encryption": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", @@ -139364,7 +138280,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultDataLakeStorageAccountUrl": "System.String", "DefaultDataLakeStorageFilesystem": "System.String" @@ -139424,7 +138340,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSEncryptionDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomerManagedKeyDetails": "Microsoft.Azure.Commands.Synapse.Models.PSCustomerManagedKeyDetails", "DoubleEncryptionEnabled": "System.Nullable`1[System.Boolean]" @@ -139474,7 +138390,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSCustomerManagedKeyDetails": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSCustomerManagedKeyDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSCustomerManagedKeyDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSCustomerManagedKeyDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Key": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceKeyDetails", "Status": "System.String" @@ -139524,7 +138440,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceKeyDetails": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceKeyDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceKeyDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSWorkspaceKeyDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "KeyVaultUrl": "System.String" @@ -139586,7 +138502,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IdentityType": "System.String", "PrincipalId": "System.String", @@ -139637,7 +138553,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedVirtualNetworkSettings, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedAadTenantIdsForLinking": "System.Collections.Generic.IList`1[System.String]", "LinkedAccessCheckOnTargetResource": "System.Nullable`1[System.Boolean]", @@ -139769,7 +138685,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualNetworkProfileComputeSubnetId": "System.String" }, @@ -139854,7 +138770,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -139866,7 +138782,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateLinkServiceConnectionState", @@ -139920,7 +138836,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpoint": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -139969,7 +138885,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSPrivateLinkServiceConnectionState": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateLinkServiceConnectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "System.String", "Description": "System.String", @@ -141036,7 +139952,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSNotebook": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BigDataPool": "Microsoft.Azure.Commands.Synapse.Models.PSBigDataPoolReference", "Metadata": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookMetadata", @@ -141092,7 +140008,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSBigDataPoolReference": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSBigDataPoolReference", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSBigDataPoolReference, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSBigDataPoolReference, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.Nullable`1[Azure.Analytics.Synapse.Artifacts.Models.BigDataPoolReferenceType]", "ReferenceName": "System.String" @@ -141213,7 +140129,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSNotebookMetadata": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookMetadata, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookMetadata, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Kernelspec": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookKernelSpec", "LanguageInfo": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookLanguageInfo", @@ -141264,7 +140180,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSNotebookKernelSpec": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookKernelSpec", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookKernelSpec, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookKernelSpec, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "DisplayName": "System.String", @@ -141315,7 +140231,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSNotebookLanguageInfo": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookLanguageInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookLanguageInfo, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookLanguageInfo, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "CodemirrorMode": "System.String", @@ -141366,7 +140282,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSNotebookSessionProperties": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookSessionProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookSessionProperties, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookSessionProperties, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DriverCores": "System.Nullable`1[System.Int32]", "ExecutorCores": "System.Nullable`1[System.Int32]", @@ -141431,7 +140347,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCell]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCell]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCell, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCell, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -141443,7 +140359,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSNotebookCell": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookCell", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookCell, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookCell, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Outputs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem]", @@ -141497,7 +140413,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -141509,7 +140425,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookCellOutputItem, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExecutionCount": "System.Nullable`1[System.Int32]", "Text": "System.Object", @@ -141563,7 +140479,7 @@ "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Synapse.Models.PSActivityRun]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Synapse.Models.PSActivityRun]", - "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Synapse.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Synapse.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -141575,7 +140491,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSActivityRun": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Values": "System.Collections.Generic.IEnumerable`1[System.Object]", "Keys": "System.Collections.Generic.IEnumerable`1[System.String]", @@ -141684,7 +140600,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Id": "System.String", @@ -141748,7 +140664,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -141846,7 +140762,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -141859,7 +140775,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Azure.Analytics.Synapse.Artifacts.Models.ParameterType", "DefaultValue": "System.Object" @@ -141909,7 +140825,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSVariableSpecification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSVariableSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Synapse.Models.PSVariableSpecification, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Synapse.Models.PSVariableSpecification, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -141922,7 +140838,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSVariableSpecification": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSVariableSpecification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSVariableSpecification, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSVariableSpecification, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Azure.Analytics.Synapse.Artifacts.Models.VariableType", "DefaultValue": "System.Object" @@ -142739,7 +141655,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobCreationRequest": "Microsoft.Azure.Commands.Synapse.Models.PSLivyRequestBase", "RunningAt": "System.Nullable`1[System.DateTimeOffset]", @@ -142796,7 +141712,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSLivyRequestBase": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLivyRequestBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLivyRequestBase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLivyRequestBase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Configuration": "System.Collections.Generic.IReadOnlyDictionary`2[System.String,System.String]", "Arguments": "System.Collections.Generic.IReadOnlyList`1[System.String]", @@ -142857,7 +141773,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CurrentState": "System.Nullable`1[Azure.Analytics.Synapse.Spark.Models.SchedulerCurrentState]", "SubmittedAt": "System.Nullable`1[System.DateTimeOffset]", @@ -142983,7 +141899,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSSparkServicePluginInformation": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSparkServicePluginInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSparkServicePluginInformation, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSparkServicePluginInformation, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CurrentState": "System.Nullable`1[Azure.Analytics.Synapse.Spark.Models.PluginCurrentState]", "PreparationStartedAt": "System.Nullable`1[System.DateTimeOffset]", @@ -143312,7 +142228,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "DelayInMinutes": "System.Nullable`1[System.Int32]" @@ -143362,7 +142278,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "MinNodeCount": "System.Nullable`1[System.Int32]", @@ -143413,7 +142329,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Time": "System.Nullable`1[System.DateTime]", "Content": "System.String", @@ -143486,7 +142402,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "JobCreationRequest": "Microsoft.Azure.Commands.Synapse.Models.PSLivyRequestBase", "IdleAt": "System.Nullable`1[System.DateTimeOffset]", @@ -143545,7 +142461,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSLivyStatementOutput": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSLivyStatementOutput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLivyStatementOutput, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLivyStatementOutput, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Traceback": "System.Collections.Generic.IReadOnlyList`1[System.String]", "ExecutionCount": "System.Nullable`1[System.Int32]", @@ -143599,7 +142515,7 @@ "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", "GenericTypeArguments": [], @@ -143609,7 +142525,7 @@ "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143704,7 +142620,7 @@ "Microsoft.Azure.Commands.Synapse.Models.AuditStateType": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143799,7 +142715,7 @@ "Microsoft.Azure.Commands.Synapse.Models.StorageKeyKind": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.StorageKeyKind", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143916,7 +142832,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tier": "System.String", "Name": "System.String" @@ -143978,7 +142894,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -143990,7 +142906,7 @@ "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rank": "System.Nullable`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank]", "SchemaName": "System.String", @@ -144041,7 +142957,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -144053,7 +142969,7 @@ "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.DataClassification", "Name": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.DataClassification.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144616,7 +143532,7 @@ "Microsoft.Azure.Commands.Synapse.Models.PSSystemData": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreatedAt": "System.Nullable`1[System.DateTime]", "LastModifiedAt": "System.Nullable`1[System.DateTime]", @@ -144777,7 +143693,7 @@ "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType": { "Namespace": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144872,7 +143788,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -144884,7 +143800,7 @@ "Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel": { "Namespace": "Microsoft.Azure.Commands.Synapse.Model", "Name": "Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Model.PSVulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Code": "System.String", "Message": "System.String" @@ -144929,7 +143845,7 @@ "Microsoft.Azure.Commands.Synapse.Models.ThreatDetectionStateType": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.ThreatDetectionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145024,7 +143940,7 @@ "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145119,7 +144035,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -145131,7 +144047,7 @@ "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment", "Name": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Result": "System.Collections.Generic.IList`1[System.String]" }, @@ -145175,7 +144091,7 @@ "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval": { "Namespace": "Microsoft.Azure.Commands.Synapse.Models", "Name": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], 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 b9a8024b41a3..fd5c0ff81990 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 @@ -426,7 +426,7 @@ "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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject", "Id": "System.String", @@ -881,7 +881,7 @@ "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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject", "Id": "System.String", @@ -1332,7 +1332,7 @@ "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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject", "Id": "System.String", @@ -1425,7 +1425,7 @@ "Type": { "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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1615,7 +1615,7 @@ "Type": { "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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2208,7 +2208,7 @@ "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=3.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TagsProperty": "System.Collections.Generic.IDictionary`2[System.String,System.String]" },