diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index fc05005a406a..5d66544571ae 100644 --- a/src/Accounts/Accounts/Az.Accounts.psd1 +++ b/src/Accounts/Accounts/Az.Accounts.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/6/2023 +# Generated on: 1/12/2023 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.11.0' +ModuleVersion = '2.11.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -147,11 +147,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Supported Web Account Manager (WAM) as an opt-in interactive login experience. Enable it by ''Update-AzConfig -EnableLoginByWam True''. -* Optimized the mechanism for assembly loading. -* Enabled AzKeyStore with keyring in Linux. -* Fixed a typo in GetAzureRmContextAutosaveSetting.cs changing the cmdlet class name to GetAzureRmContextAutosaveSetting -* Removed survey on error message in ''Resolve-AzError''. [#20398]' + ReleaseNotes = '* Fixed an issue where Az.Accounts cannot be imported correctly. [#20615]' # Prerelease string of this module # Prerelease = '' diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 249d6db82dbb..ed39c253a0e8 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -20,6 +20,9 @@ ## Upcoming Release +## Version 2.11.1 +* Fixed an issue where Az.Accounts cannot be imported correctly. [#20615] + ## Version 2.11.0 * Supported Web Account Manager (WAM) as an opt-in interactive login experience. Enable it by `Update-AzConfig -EnableLoginByWam $true`. * Optimized the mechanism for assembly loading. diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs index a229db412d18..fea311fc8d95 100644 --- a/src/Accounts/Accounts/Properties/AssemblyInfo.cs +++ b/src/Accounts/Accounts/Properties/AssemblyInfo.cs @@ -43,8 +43,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("2.11.0")] -[assembly: AssemblyFileVersion("2.11.0")] +[assembly: AssemblyVersion("2.11.1")] +[assembly: AssemblyFileVersion("2.11.1")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")] #endif diff --git a/src/Accounts/Accounts/StartupScripts/InitializeAssemblyResolver.ps1 b/src/Accounts/Accounts/StartupScripts/InitializeAssemblyResolver.ps1 index d146fd3ae8d7..13d8cc5f1715 100644 --- a/src/Accounts/Accounts/StartupScripts/InitializeAssemblyResolver.ps1 +++ b/src/Accounts/Accounts/StartupScripts/InitializeAssemblyResolver.ps1 @@ -1,5 +1,7 @@ $assemblyRootPath = [System.IO.Path]::Combine($PSScriptRoot, "..", "lib") -$conditionalAssemblyContext = [Microsoft.Azure.PowerShell.AssemblyLoading.ConditionalAssemblyContext]::new($Host.Version) +Write-Debug "Initializing ConditionalAssemblyContext. PSEdition is [$($PSVersionTable.PSEdition)]. PSVersion is [$($PSVersionTable.PSVersion)]." +$conditionalAssemblyContext = [Microsoft.Azure.PowerShell.AssemblyLoading.ConditionalAssemblyContext]::new($PSVersionTable.PSEdition, $PSVersionTable.PSVersion) +Write-Debug "Initializing ConditionalAssemblyProvider. AssemblyRootPath is [$assemblyRootPath]." [Microsoft.Azure.PowerShell.AssemblyLoading.ConditionalAssemblyProvider]::Initialize($assemblyRootPath, $conditionalAssemblyContext) if ($PSEdition -eq 'Desktop') { diff --git a/src/Accounts/AssemblyLoading.Test/Mocks/MockConditionalAssemblyContext.cs b/src/Accounts/AssemblyLoading.Test/Mocks/MockConditionalAssemblyContext.cs index 21fd73f86ad8..d5638a481ed3 100644 --- a/src/Accounts/AssemblyLoading.Test/Mocks/MockConditionalAssemblyContext.cs +++ b/src/Accounts/AssemblyLoading.Test/Mocks/MockConditionalAssemblyContext.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.PowerShell.AssemblyLoading.Test.Mocks { internal class MockConditionalAssemblyContext : IConditionalAssemblyContext { + public string PSEdition { get; set; } public Version PSVersion { get; set; } public Architecture OSArchitecture { get; set; } public OSPlatform OS { get; set; } diff --git a/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyExtensionsTests.cs b/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyExtensionsTests.cs index 0476b8ccbaee..de5cae35f396 100644 --- a/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyExtensionsTests.cs +++ b/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyExtensionsTests.cs @@ -28,6 +28,7 @@ public void CanWorkWithPSVersion() { var windowsPSContext = new MockConditionalAssemblyContext() { + PSEdition = Constants.PSEditionDesktop, PSVersion = Version.Parse("5.1.22621.608") }; var windowsPSAssembly = new MockConditionalAssembly(windowsPSContext) @@ -40,6 +41,7 @@ public void CanWorkWithPSVersion() var ps7Context = new MockConditionalAssemblyContext() { + PSEdition = Constants.PSEditionCore, PSVersion = Version.Parse("7.3.0") }; windowsPSAssembly = new MockConditionalAssembly( @@ -52,6 +54,23 @@ public void CanWorkWithPSVersion() Assert.False(windowsPSAssembly.ShouldLoad); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void CanWorkWithEmptyPSEdition() + { + var windowsPSContext = new MockConditionalAssemblyContext() + { + PSVersion = Version.Parse("1.0.0.0") + }; + var windowsPSAssembly = new MockConditionalAssembly(windowsPSContext) + .WithWindowsPowerShell(); + var psCoreAssembly = new MockConditionalAssembly( + windowsPSContext) + .WithPowerShellCore(); + Assert.True(windowsPSAssembly.ShouldLoad); + Assert.False(psCoreAssembly.ShouldLoad); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void CanWorkWithOS() diff --git a/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyProviderTests.cs b/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyProviderTests.cs index 35db84a69923..efb8f9de992b 100644 --- a/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyProviderTests.cs +++ b/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyProviderTests.cs @@ -35,6 +35,7 @@ public void CanGetAssembliesOnWindowsPowerShell() var context = new MockConditionalAssemblyContext() { OS = OSPlatform.Windows, + PSEdition = Constants.PSEditionDesktop, PSVersion = Version.Parse("5.1.22621.608"), OSArchitecture = Architecture.X64 }; @@ -57,6 +58,7 @@ public void CanGetAssembliesOnPowerShellCorePlus() var context = new MockConditionalAssemblyContext() { OS = OSPlatform.Windows, + PSEdition = Constants.PSEditionCore, PSVersion = Version.Parse("7.3.0"), OSArchitecture = Architecture.X64 }; diff --git a/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyTests.cs b/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyTests.cs index f5f97643f265..db477d0341af 100644 --- a/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyTests.cs +++ b/src/Accounts/AssemblyLoading.Test/UnitTests/ConditionalAssemblyTests.cs @@ -37,7 +37,10 @@ public void ShouldLoadAssemblyAccordingToPSVersion() { // windows powershell var context = new MockConditionalAssemblyContext() - { PSVersion = Version.Parse("5.1.22621.608") }; + { + PSEdition = Constants.PSEditionDesktop, + PSVersion = Version.Parse("5.1.22621.608") + }; var windowsPSAssembly = NewDummyAssembly(context).WithWindowsPowerShell(); var psCoreAssembly = NewDummyAssembly(context).WithPowerShellCore(); var neturalAssembly = NewDummyAssembly(context); @@ -46,6 +49,7 @@ public void ShouldLoadAssemblyAccordingToPSVersion() Assert.True(neturalAssembly.ShouldLoad); // powershell core and 7+ + context.PSEdition = Constants.PSEditionCore; context.PSVersion = Version.Parse("7.3.0"); windowsPSAssembly = NewDummyAssembly(context).WithWindowsPowerShell(); psCoreAssembly = NewDummyAssembly(context).WithPowerShellCore(); diff --git a/src/Accounts/AssemblyLoading/ConditionalAssemblyContext.cs b/src/Accounts/AssemblyLoading/ConditionalAssemblyContext.cs index 5896b59c33b3..003dc059b6ee 100644 --- a/src/Accounts/AssemblyLoading/ConditionalAssemblyContext.cs +++ b/src/Accounts/AssemblyLoading/ConditionalAssemblyContext.cs @@ -20,11 +20,15 @@ namespace Microsoft.Azure.PowerShell.AssemblyLoading /// public class ConditionalAssemblyContext : IConditionalAssemblyContext { - public ConditionalAssemblyContext(Version psVersion) + public ConditionalAssemblyContext(string psEdition, Version psVersion) { + PSEdition = psEdition; PSVersion = psVersion; } + /// + public string PSEdition { get; private set; } + /// public Version PSVersion { get; private set; } diff --git a/src/Accounts/AssemblyLoading/ConditionalAssemblyExtensions.cs b/src/Accounts/AssemblyLoading/ConditionalAssemblyExtensions.cs index e4ba071f9ba6..49da5d9207be 100644 --- a/src/Accounts/AssemblyLoading/ConditionalAssemblyExtensions.cs +++ b/src/Accounts/AssemblyLoading/ConditionalAssemblyExtensions.cs @@ -27,7 +27,13 @@ public static class ConditionalAssemblyExtensions /// public static IConditionalAssembly WithWindowsPowerShell(this IConditionalAssembly assembly) { - return assembly.WithPowerShellVersion(new Version("5.0.0"), new Version("6.0.0")); + // In PowerShell 4 and below, this variable does not exist. + // $PSEdition being null should be treated as the same as having the value Desktop. + // https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_powershell_editions?view=powershell-7.3 + var psEdition = assembly.Context.PSEdition ?? Constants.PSEditionDesktop; + bool shouldLoad = psEdition.Equals(Constants.PSEditionDesktop, StringComparison.OrdinalIgnoreCase); + assembly.UpdateShouldLoad(shouldLoad); + return assembly; } /// @@ -35,7 +41,10 @@ public static IConditionalAssembly WithWindowsPowerShell(this IConditionalAssemb /// public static IConditionalAssembly WithPowerShellCore(this IConditionalAssembly assembly) { - return assembly.WithPowerShellVersion(new Version("6.0.0")); + var psEdition = assembly.Context.PSEdition ?? Constants.PSEditionDesktop; + bool shouldLoad = psEdition.Equals(Constants.PSEditionCore, StringComparison.OrdinalIgnoreCase); + assembly.UpdateShouldLoad(shouldLoad); + return assembly; } /// @@ -47,10 +56,19 @@ public static IConditionalAssembly WithPowerShellCore(this IConditionalAssembly /// Upper limit of PowerShell version, exclusive. public static IConditionalAssembly WithPowerShellVersion(this IConditionalAssembly assembly, Version lower, Version upper = null) { - bool shouldLoad = lower <= assembly.Context.PSVersion; - if (upper != null) + bool shouldLoad; + var psVersion = assembly.Context.PSVersion; + if (psVersion == null) + { + shouldLoad = false; + } + else { - shouldLoad = shouldLoad && assembly.Context.PSVersion < upper; + shouldLoad = lower <= assembly.Context.PSVersion; + if (upper != null) + { + shouldLoad = shouldLoad && assembly.Context.PSVersion < upper; + } } assembly.UpdateShouldLoad(shouldLoad); return assembly; diff --git a/src/Accounts/AssemblyLoading/Constants.cs b/src/Accounts/AssemblyLoading/Constants.cs new file mode 100644 index 000000000000..c935516840f8 --- /dev/null +++ b/src/Accounts/AssemblyLoading/Constants.cs @@ -0,0 +1,22 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.PowerShell.AssemblyLoading +{ + public class Constants + { + public const string PSEditionDesktop = "Desktop"; + public const string PSEditionCore = "Core"; + } +} \ No newline at end of file diff --git a/src/Accounts/AssemblyLoading/IConditionalAssemblyContext.cs b/src/Accounts/AssemblyLoading/IConditionalAssemblyContext.cs index 7b8c9bedb013..a20927a98a71 100644 --- a/src/Accounts/AssemblyLoading/IConditionalAssemblyContext.cs +++ b/src/Accounts/AssemblyLoading/IConditionalAssemblyContext.cs @@ -23,6 +23,11 @@ namespace Microsoft.Azure.PowerShell.AssemblyLoading /// public interface IConditionalAssemblyContext { + /// + /// Edition of PowerShell, "Desktop" or "Core". + /// + string PSEdition { get; } + /// /// Version of PowerShell. For example "5.1.22621.608". /// diff --git a/src/Accounts/Authentication/Properties/AssemblyInfo.cs b/src/Accounts/Authentication/Properties/AssemblyInfo.cs index 20f10f8423d9..4123a7b92454 100644 --- a/src/Accounts/Authentication/Properties/AssemblyInfo.cs +++ b/src/Accounts/Authentication/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.0.*")] -[assembly: AssemblyVersion("2.11.0")] -[assembly: AssemblyFileVersion("2.11.0")] +[assembly: AssemblyVersion("2.11.1")] +[assembly: AssemblyFileVersion("2.11.1")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Authentication.Test")] #endif diff --git a/src/Accounts/Authenticators/Properties/AssemblyInfo.cs b/src/Accounts/Authenticators/Properties/AssemblyInfo.cs index 394531a042ab..6851d1032b71 100644 --- a/src/Accounts/Authenticators/Properties/AssemblyInfo.cs +++ b/src/Accounts/Authenticators/Properties/AssemblyInfo.cs @@ -48,5 +48,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.*")] -[assembly: AssemblyVersion("2.11.0")] -[assembly: AssemblyFileVersion("2.11.0")] +[assembly: AssemblyVersion("2.11.1")] +[assembly: AssemblyFileVersion("2.11.1")] diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index ea1a4648c898..8abcb187cfc9 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -52,7 +52,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.0'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.1'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '2.0.0'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '5.2.0'; }, @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.4'; }, diff --git a/tools/AzPreview/AzPreview.psd1 b/tools/AzPreview/AzPreview.psd1 index 6159d59a0d5d..f3da9222d55b 100644 --- a/tools/AzPreview/AzPreview.psd1 +++ b/tools/AzPreview/AzPreview.psd1 @@ -52,7 +52,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.0'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.1'; }, @{ModuleName = 'Az.ADDomainServices'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '2.0.0'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '5.2.0'; }, diff --git a/tools/CheckAssemblies.ps1 b/tools/CheckAssemblies.ps1 index 62a988a283e4..e969bd7f8200 100644 --- a/tools/CheckAssemblies.ps1 +++ b/tools/CheckAssemblies.ps1 @@ -27,7 +27,7 @@ function Get-PreloadAssemblies{ Write-Host "Getting preload assemblies in $BuildFolder for $ModuleFolder" Add-Type -Path ([System.IO.Path]::Combine($BuildFolder, "Az.Accounts", "Microsoft.Azure.PowerShell.AssemblyLoading.dll")) $assemblyRootPath = [System.IO.Path]::Combine($BuildFolder, "Az.Accounts", "lib") - $conditionalAssemblyContext = [Microsoft.Azure.PowerShell.AssemblyLoading.ConditionalAssemblyContext]::new($Host.Version) + $conditionalAssemblyContext = [Microsoft.Azure.PowerShell.AssemblyLoading.ConditionalAssemblyContext]::new($PSVersionTable.PSEdition, $PSVersionTable.PSVersion) [Microsoft.Azure.PowerShell.AssemblyLoading.ConditionalAssemblyProvider]::Initialize($assemblyRootPath, $conditionalAssemblyContext) $assemblyDict = [Microsoft.Azure.PowerShell.AssemblyLoading.ConditionalAssemblyProvider]::GetAssemblies() return $assemblyDict.Keys diff --git a/tools/Docs/az-ps-latest.csv b/tools/Docs/az-ps-latest.csv index f57b70603632..f34af4128de6 100644 --- a/tools/Docs/az-ps-latest.csv +++ b/tools/Docs/az-ps-latest.csv @@ -1,4 +1,4 @@ -pac0,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Accounts.2.11.0.nupkg;sourceType=sa]Az.Accounts,2.11.0 +pac0,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Accounts.2.11.1.nupkg;sourceType=sa]Az.Accounts,2.11.1 pac1,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ADDomainServices.0.2.0.nupkg;sourceType=sa]Az.ADDomainServices,0.2.0 pac2,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Advisor.2.0.0.nupkg;sourceType=sa]Az.Advisor,2.0.0 pac3,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Aks.5.2.0.nupkg;sourceType=sa]Az.Aks,5.2.0 @@ -14,135 +14,135 @@ pac12,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac13,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BareMetal.0.1.0.nupkg;sourceType=sa]Az.BareMetal,0.1.0 pac14,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Batch.3.3.0.nupkg;sourceType=sa]Az.Batch,3.3.0 pac15,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Billing.2.0.0.nupkg;sourceType=sa]Az.Billing,2.0.0 -pac16,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Blueprint.0.4.2.nupkg;sourceType=sa]Az.Blueprint,0.4.2 -pac17,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BotService.0.5.0.nupkg;sourceType=sa]Az.BotService,0.5.0 -pac18,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Cdn.2.1.0.nupkg;sourceType=sa]Az.Cdn,2.1.0 -pac19,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ChangeAnalysis.0.1.0.nupkg;sourceType=sa]Az.ChangeAnalysis,0.1.0 -pac20,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CloudService.1.1.0.nupkg;sourceType=sa]Az.CloudService,1.1.0 -pac21,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CognitiveServices.1.12.0.nupkg;sourceType=sa]Az.CognitiveServices,1.12.0 -pac22,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Communication.0.2.0.nupkg;sourceType=sa]Az.Communication,0.2.0 -pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.5.3.0.nupkg;sourceType=sa]Az.Compute,5.3.0 -pac24,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConfidentialLedger.1.0.0.nupkg;sourceType=sa]Az.ConfidentialLedger,1.0.0 -pac25,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Confluent.0.2.0.nupkg;sourceType=sa]Az.Confluent,0.2.0 -pac26,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedKubernetes.0.7.0.nupkg;sourceType=sa]Az.ConnectedKubernetes,0.7.0 -pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedMachine.0.4.1.nupkg;sourceType=sa]Az.ConnectedMachine,0.4.1 -pac28,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedNetwork.0.1.0.nupkg;sourceType=sa]Az.ConnectedNetwork,0.1.0 -pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerInstance.3.1.0.nupkg;sourceType=sa]Az.ContainerInstance,3.1.0 -pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerRegistry.3.0.1.nupkg;sourceType=sa]Az.ContainerRegistry,3.0.1 -pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CosmosDB.1.9.0.nupkg;sourceType=sa]Az.CosmosDB,1.9.0 -pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CostManagement.0.3.0.nupkg;sourceType=sa]Az.CostManagement,0.3.0 -pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CustomLocation.0.1.0.nupkg;sourceType=sa]Az.CustomLocation,0.1.0 -pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CustomProviders.0.1.0.nupkg;sourceType=sa]Az.CustomProviders,0.1.0 -pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Dashboard.0.1.1.nupkg;sourceType=sa]Az.Dashboard,0.1.1 -pac36,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataBox.0.2.0.nupkg;sourceType=sa]Az.DataBox,0.2.0 -pac37,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataBoxEdge.1.1.0.nupkg;sourceType=sa]Az.DataBoxEdge,1.1.0 -pac38,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Databricks.1.4.0.nupkg;sourceType=sa]Az.Databricks,1.4.0 -pac39,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Datadog.0.1.0.nupkg;sourceType=sa]Az.Datadog,0.1.0 -pac40,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataFactory.1.16.11.nupkg;sourceType=sa]Az.DataFactory,1.16.11 -pac41,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataLakeAnalytics.1.0.2.nupkg;sourceType=sa]Az.DataLakeAnalytics,1.0.2 -pac42,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataLakeStore.1.3.0.nupkg;sourceType=sa]Az.DataLakeStore,1.3.0 -pac43,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataMigration.0.12.0.nupkg;sourceType=sa]Az.DataMigration,0.12.0 -pac44,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataProtection.1.0.1.nupkg;sourceType=sa]Az.DataProtection,1.0.1 -pac45,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataShare.1.0.1.nupkg;sourceType=sa]Az.DataShare,1.0.1 -pac46,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DedicatedHsm.0.3.0.nupkg;sourceType=sa]Az.DedicatedHsm,0.3.0 -pac47,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeploymentManager.1.1.0.nupkg;sourceType=sa]Az.DeploymentManager,1.1.0 -pac48,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DesktopVirtualization.3.1.1.nupkg;sourceType=sa]Az.DesktopVirtualization,3.1.1 -pac49,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceProvisioningServices.0.10.0.nupkg;sourceType=sa]Az.DeviceProvisioningServices,0.10.0 -pac50,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceUpdate.0.1.0.nupkg;sourceType=sa]Az.DeviceUpdate,0.1.0 -pac51,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevSpaces.0.7.3.nupkg;sourceType=sa]Az.DevSpaces,0.7.3 -pac52,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevTestLabs.1.0.2.nupkg;sourceType=sa]Az.DevTestLabs,1.0.2 -pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DigitalTwins.0.2.0.nupkg;sourceType=sa]Az.DigitalTwins,0.2.0 -pac54,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DiskPool.0.3.0.nupkg;sourceType=sa]Az.DiskPool,0.3.0 -pac55,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Dns.1.1.2.nupkg;sourceType=sa]Az.Dns,1.1.2 -pac56,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DnsResolver.0.2.1.nupkg;sourceType=sa]Az.DnsResolver,0.2.1 -pac57,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DynatraceObservability.0.1.0.nupkg;sourceType=sa]Az.DynatraceObservability,0.1.0 -pac58,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.EdgeOrder.0.1.0.nupkg;sourceType=sa]Az.EdgeOrder,0.1.0 -pac59,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Elastic.0.1.0.nupkg;sourceType=sa]Az.Elastic,0.1.0 -pac60,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ElasticSan.0.1.0.nupkg;sourceType=sa]Az.ElasticSan,0.1.0 -pac61,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.EventGrid.1.5.0.nupkg;sourceType=sa]Az.EventGrid,1.5.0 -pac62,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.EventHub.3.2.0.nupkg;sourceType=sa]Az.EventHub,3.2.0 -pac63,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.FluidRelay.0.1.0.nupkg;sourceType=sa]Az.FluidRelay,0.1.0 -pac64,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.FrontDoor.1.9.0.nupkg;sourceType=sa]Az.FrontDoor,1.9.0 -pac65,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Functions.4.0.6.nupkg;sourceType=sa]Az.Functions,4.0.6 -pac66,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.GuestConfiguration.0.11.0.nupkg;sourceType=sa]Az.GuestConfiguration,0.11.0 -pac67,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HanaOnAzure.0.3.0.nupkg;sourceType=sa]Az.HanaOnAzure,0.3.0 -pac68,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HDInsight.5.0.1.nupkg;sourceType=sa]Az.HDInsight,5.0.1 -pac69,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HealthBot.0.1.0.nupkg;sourceType=sa]Az.HealthBot,0.1.0 -pac70,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HealthcareApis.2.0.0.nupkg;sourceType=sa]Az.HealthcareApis,2.0.0 -pac71,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HPCCache.0.1.1.nupkg;sourceType=sa]Az.HPCCache,0.1.1 -pac72,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ImageBuilder.0.3.0.nupkg;sourceType=sa]Az.ImageBuilder,0.3.0 -pac73,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ImportExport.0.2.0.nupkg;sourceType=sa]Az.ImportExport,0.2.0 -pac74,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.IotCentral.0.10.0.nupkg;sourceType=sa]Az.IotCentral,0.10.0 -pac75,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.IotHub.2.7.4.nupkg;sourceType=sa]Az.IotHub,2.7.4 -pac76,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.KeyVault.4.9.1.nupkg;sourceType=sa]Az.KeyVault,4.9.1 -pac77,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.KubernetesConfiguration.0.6.0.nupkg;sourceType=sa]Az.KubernetesConfiguration,0.6.0 -pac78,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Kusto.2.1.0.nupkg;sourceType=sa]Az.Kusto,2.1.0 -pac79,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.LabServices.0.1.0.nupkg;sourceType=sa]Az.LabServices,0.1.0 -pac80,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.LogicApp.1.5.0.nupkg;sourceType=sa]Az.LogicApp,1.5.0 -pac81,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Logz.0.1.0.nupkg;sourceType=sa]Az.Logz,0.1.0 -pac82,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MachineLearning.1.1.3.nupkg;sourceType=sa]Az.MachineLearning,1.1.3 -pac83,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MachineLearningServices.0.1.0.nupkg;sourceType=sa]Az.MachineLearningServices,0.1.0 -pac84,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Maintenance.1.2.1.nupkg;sourceType=sa]Az.Maintenance,1.2.1 -pac85,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ManagedServiceIdentity.1.1.0.nupkg;sourceType=sa]Az.ManagedServiceIdentity,1.1.0 -pac86,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ManagedServices.3.0.0.nupkg;sourceType=sa]Az.ManagedServices,3.0.0 -pac87,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ManagementPartner.0.7.2.nupkg;sourceType=sa]Az.ManagementPartner,0.7.2 -pac88,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Maps.0.8.0.nupkg;sourceType=sa]Az.Maps,0.8.0 -pac89,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MariaDb.0.2.0.nupkg;sourceType=sa]Az.MariaDb,0.2.0 -pac90,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Marketplace.0.3.0.nupkg;sourceType=sa]Az.Marketplace,0.3.0 -pac91,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MarketplaceOrdering.2.0.0.nupkg;sourceType=sa]Az.MarketplaceOrdering,2.0.0 -pac92,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Media.1.1.1.nupkg;sourceType=sa]Az.Media,1.1.1 -pac93,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Migrate.2.1.0.nupkg;sourceType=sa]Az.Migrate,2.1.0 -pac94,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MixedReality.0.2.0.nupkg;sourceType=sa]Az.MixedReality,0.2.0 -pac95,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Monitor.4.4.0.nupkg;sourceType=sa]Az.Monitor,4.4.0 -pac96,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MonitoringSolutions.0.1.0.nupkg;sourceType=sa]Az.MonitoringSolutions,0.1.0 -pac97,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MySql.1.1.0.nupkg;sourceType=sa]Az.MySql,1.1.0 -pac98,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetAppFiles.0.11.0.nupkg;sourceType=sa]Az.NetAppFiles,0.11.0 -pac99,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Network.5.3.0.nupkg;sourceType=sa]Az.Network,5.3.0 -pac100,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkFunction.0.1.2.nupkg;sourceType=sa]Az.NetworkFunction,0.1.2 -pac101,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Nginx.0.1.0.nupkg;sourceType=sa]Az.Nginx,0.1.0 -pac102,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NotificationHubs.1.1.1.nupkg;sourceType=sa]Az.NotificationHubs,1.1.1 -pac103,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.OperationalInsights.3.2.0.nupkg;sourceType=sa]Az.OperationalInsights,3.2.0 -pac104,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Orbital.0.1.0.nupkg;sourceType=sa]Az.Orbital,0.1.0 -pac105,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Peering.0.3.1.nupkg;sourceType=sa]Az.Peering,0.3.1 -pac106,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PolicyInsights.1.5.1.nupkg;sourceType=sa]Az.PolicyInsights,1.5.1 -pac107,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Portal.0.1.0.nupkg;sourceType=sa]Az.Portal,0.1.0 -pac108,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PostgreSql.1.1.0.nupkg;sourceType=sa]Az.PostgreSql,1.1.0 -pac109,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PowerBIEmbedded.1.2.0.nupkg;sourceType=sa]Az.PowerBIEmbedded,1.2.0 -pac110,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PrivateDns.1.0.3.nupkg;sourceType=sa]Az.PrivateDns,1.0.3 -pac111,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ProviderHub.0.2.0.nupkg;sourceType=sa]Az.ProviderHub,0.2.0 -pac112,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Purview.0.2.0.nupkg;sourceType=sa]Az.Purview,0.2.0 -pac113,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Quota.0.1.0.nupkg;sourceType=sa]Az.Quota,0.1.0 -pac114,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RecoveryServices.6.1.2.nupkg;sourceType=sa]Az.RecoveryServices,6.1.2 -pac115,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisCache.1.7.0.nupkg;sourceType=sa]Az.RedisCache,1.7.0 -pac116,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisEnterpriseCache.1.1.0.nupkg;sourceType=sa]Az.RedisEnterpriseCache,1.1.0 -pac117,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Relay.1.0.3.nupkg;sourceType=sa]Az.Relay,1.0.3 -pac118,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Reservations.0.11.0.nupkg;sourceType=sa]Az.Reservations,0.11.0 -pac119,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceGraph.0.13.0.nupkg;sourceType=sa]Az.ResourceGraph,0.13.0 -pac120,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceMover.1.1.0.nupkg;sourceType=sa]Az.ResourceMover,1.1.0 -pac121,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Resources.6.5.1.nupkg;sourceType=sa]Az.Resources,6.5.1 -pac122,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Search.0.8.0.nupkg;sourceType=sa]Az.Search,0.8.0 -pac123,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Security.1.3.0.nupkg;sourceType=sa]Az.Security,1.3.0 -pac124,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SecurityInsights.3.0.1.nupkg;sourceType=sa]Az.SecurityInsights,3.0.1 -pac125,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceBus.2.1.0.nupkg;sourceType=sa]Az.ServiceBus,2.1.0 -pac126,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceFabric.3.1.0.nupkg;sourceType=sa]Az.ServiceFabric,3.1.0 -pac127,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceLinker.0.1.0.nupkg;sourceType=sa]Az.ServiceLinker,0.1.0 -pac128,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SignalR.1.5.0.nupkg;sourceType=sa]Az.SignalR,1.5.0 -pac129,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SpringCloud.0.3.0.nupkg;sourceType=sa]Az.SpringCloud,0.3.0 -pac130,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sql.4.2.0.nupkg;sourceType=sa]Az.Sql,4.2.0 -pac131,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SqlVirtualMachine.1.1.0.nupkg;sourceType=sa]Az.SqlVirtualMachine,1.1.0 -pac132,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Ssh.0.1.0.nupkg;sourceType=sa]Az.Ssh,0.1.0 -pac133,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCI.1.4.1.nupkg;sourceType=sa]Az.StackHCI,1.4.1 -pac134,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Storage.5.3.0.nupkg;sourceType=sa]Az.Storage,5.3.0 -pac135,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageMover.0.1.0.nupkg;sourceType=sa]Az.StorageMover,0.1.0 -pac136,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageSync.1.7.0.nupkg;sourceType=sa]Az.StorageSync,1.7.0 -pac137,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StreamAnalytics.2.0.0.nupkg;sourceType=sa]Az.StreamAnalytics,2.0.0 -pac138,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Subscription.0.8.1.nupkg;sourceType=sa]Az.Subscription,0.8.1 -pac139,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Support.1.0.0.nupkg;sourceType=sa]Az.Support,1.0.0 -pac140,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Synapse.2.2.0.nupkg;sourceType=sa]Az.Synapse,2.2.0 -pac141,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TimeSeriesInsights.0.2.0.nupkg;sourceType=sa]Az.TimeSeriesInsights,0.2.0 -pac142,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TrafficManager.1.1.0.nupkg;sourceType=sa]Az.TrafficManager,1.1.0 -pac143,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VMware.0.5.0.nupkg;sourceType=sa]Az.VMware,0.5.0 -pac144,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VoiceServices.0.1.0.nupkg;sourceType=sa]Az.VoiceServices,0.1.0 -pac145,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Websites.2.12.1.nupkg;sourceType=sa]Az.Websites,2.12.1 -pac146,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.WindowsIotServices.0.1.0.nupkg;sourceType=sa]Az.WindowsIotServices,0.1.0 +pac17,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Blueprint.0.4.2.nupkg;sourceType=sa]Az.Blueprint,0.4.2 +pac18,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BotService.0.5.0.nupkg;sourceType=sa]Az.BotService,0.5.0 +pac19,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Cdn.2.1.0.nupkg;sourceType=sa]Az.Cdn,2.1.0 +pac20,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ChangeAnalysis.0.1.0.nupkg;sourceType=sa]Az.ChangeAnalysis,0.1.0 +pac21,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CloudService.1.1.0.nupkg;sourceType=sa]Az.CloudService,1.1.0 +pac22,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CognitiveServices.1.12.0.nupkg;sourceType=sa]Az.CognitiveServices,1.12.0 +pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Communication.0.2.0.nupkg;sourceType=sa]Az.Communication,0.2.0 +pac24,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.5.3.0.nupkg;sourceType=sa]Az.Compute,5.3.0 +pac25,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConfidentialLedger.1.0.0.nupkg;sourceType=sa]Az.ConfidentialLedger,1.0.0 +pac26,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Confluent.0.2.0.nupkg;sourceType=sa]Az.Confluent,0.2.0 +pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedKubernetes.0.7.0.nupkg;sourceType=sa]Az.ConnectedKubernetes,0.7.0 +pac28,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedMachine.0.4.1.nupkg;sourceType=sa]Az.ConnectedMachine,0.4.1 +pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedNetwork.0.1.0.nupkg;sourceType=sa]Az.ConnectedNetwork,0.1.0 +pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerInstance.3.1.0.nupkg;sourceType=sa]Az.ContainerInstance,3.1.0 +pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerRegistry.3.0.1.nupkg;sourceType=sa]Az.ContainerRegistry,3.0.1 +pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CosmosDB.1.9.0.nupkg;sourceType=sa]Az.CosmosDB,1.9.0 +pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CostManagement.0.3.0.nupkg;sourceType=sa]Az.CostManagement,0.3.0 +pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CustomLocation.0.1.0.nupkg;sourceType=sa]Az.CustomLocation,0.1.0 +pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CustomProviders.0.1.0.nupkg;sourceType=sa]Az.CustomProviders,0.1.0 +pac36,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Dashboard.0.1.1.nupkg;sourceType=sa]Az.Dashboard,0.1.1 +pac37,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataBox.0.2.0.nupkg;sourceType=sa]Az.DataBox,0.2.0 +pac38,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataBoxEdge.1.1.0.nupkg;sourceType=sa]Az.DataBoxEdge,1.1.0 +pac39,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Databricks.1.4.0.nupkg;sourceType=sa]Az.Databricks,1.4.0 +pac40,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Datadog.0.1.0.nupkg;sourceType=sa]Az.Datadog,0.1.0 +pac41,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataFactory.1.16.11.nupkg;sourceType=sa]Az.DataFactory,1.16.11 +pac42,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataLakeAnalytics.1.0.2.nupkg;sourceType=sa]Az.DataLakeAnalytics,1.0.2 +pac43,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataLakeStore.1.3.0.nupkg;sourceType=sa]Az.DataLakeStore,1.3.0 +pac44,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataMigration.0.12.0.nupkg;sourceType=sa]Az.DataMigration,0.12.0 +pac45,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataProtection.1.0.1.nupkg;sourceType=sa]Az.DataProtection,1.0.1 +pac46,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataShare.1.0.1.nupkg;sourceType=sa]Az.DataShare,1.0.1 +pac47,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DedicatedHsm.0.3.0.nupkg;sourceType=sa]Az.DedicatedHsm,0.3.0 +pac48,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeploymentManager.1.1.0.nupkg;sourceType=sa]Az.DeploymentManager,1.1.0 +pac49,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DesktopVirtualization.3.1.1.nupkg;sourceType=sa]Az.DesktopVirtualization,3.1.1 +pac50,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceProvisioningServices.0.10.0.nupkg;sourceType=sa]Az.DeviceProvisioningServices,0.10.0 +pac51,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceUpdate.0.1.0.nupkg;sourceType=sa]Az.DeviceUpdate,0.1.0 +pac52,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevSpaces.0.7.3.nupkg;sourceType=sa]Az.DevSpaces,0.7.3 +pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevTestLabs.1.0.2.nupkg;sourceType=sa]Az.DevTestLabs,1.0.2 +pac54,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DigitalTwins.0.2.0.nupkg;sourceType=sa]Az.DigitalTwins,0.2.0 +pac55,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DiskPool.0.3.0.nupkg;sourceType=sa]Az.DiskPool,0.3.0 +pac56,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Dns.1.1.2.nupkg;sourceType=sa]Az.Dns,1.1.2 +pac57,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DnsResolver.0.2.1.nupkg;sourceType=sa]Az.DnsResolver,0.2.1 +pac58,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DynatraceObservability.0.1.0.nupkg;sourceType=sa]Az.DynatraceObservability,0.1.0 +pac59,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.EdgeOrder.0.1.0.nupkg;sourceType=sa]Az.EdgeOrder,0.1.0 +pac60,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Elastic.0.1.0.nupkg;sourceType=sa]Az.Elastic,0.1.0 +pac61,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ElasticSan.0.1.0.nupkg;sourceType=sa]Az.ElasticSan,0.1.0 +pac62,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.EventGrid.1.5.0.nupkg;sourceType=sa]Az.EventGrid,1.5.0 +pac63,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.EventHub.3.2.0.nupkg;sourceType=sa]Az.EventHub,3.2.0 +pac64,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.FluidRelay.0.1.0.nupkg;sourceType=sa]Az.FluidRelay,0.1.0 +pac65,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.FrontDoor.1.9.0.nupkg;sourceType=sa]Az.FrontDoor,1.9.0 +pac66,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Functions.4.0.6.nupkg;sourceType=sa]Az.Functions,4.0.6 +pac67,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.GuestConfiguration.0.11.0.nupkg;sourceType=sa]Az.GuestConfiguration,0.11.0 +pac68,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HanaOnAzure.0.3.0.nupkg;sourceType=sa]Az.HanaOnAzure,0.3.0 +pac69,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HDInsight.5.0.1.nupkg;sourceType=sa]Az.HDInsight,5.0.1 +pac70,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HealthBot.0.1.0.nupkg;sourceType=sa]Az.HealthBot,0.1.0 +pac71,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HealthcareApis.2.0.0.nupkg;sourceType=sa]Az.HealthcareApis,2.0.0 +pac72,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HPCCache.0.1.1.nupkg;sourceType=sa]Az.HPCCache,0.1.1 +pac73,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ImageBuilder.0.3.0.nupkg;sourceType=sa]Az.ImageBuilder,0.3.0 +pac74,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ImportExport.0.2.0.nupkg;sourceType=sa]Az.ImportExport,0.2.0 +pac75,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.IotCentral.0.10.0.nupkg;sourceType=sa]Az.IotCentral,0.10.0 +pac76,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.IotHub.2.7.4.nupkg;sourceType=sa]Az.IotHub,2.7.4 +pac77,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.KeyVault.4.9.1.nupkg;sourceType=sa]Az.KeyVault,4.9.1 +pac78,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.KubernetesConfiguration.0.6.0.nupkg;sourceType=sa]Az.KubernetesConfiguration,0.6.0 +pac79,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Kusto.2.1.0.nupkg;sourceType=sa]Az.Kusto,2.1.0 +pac80,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.LabServices.0.1.0.nupkg;sourceType=sa]Az.LabServices,0.1.0 +pac82,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.LogicApp.1.5.0.nupkg;sourceType=sa]Az.LogicApp,1.5.0 +pac83,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Logz.0.1.0.nupkg;sourceType=sa]Az.Logz,0.1.0 +pac84,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MachineLearning.1.1.3.nupkg;sourceType=sa]Az.MachineLearning,1.1.3 +pac85,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MachineLearningServices.0.1.0.nupkg;sourceType=sa]Az.MachineLearningServices,0.1.0 +pac86,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Maintenance.1.2.1.nupkg;sourceType=sa]Az.Maintenance,1.2.1 +pac87,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ManagedServiceIdentity.1.1.0.nupkg;sourceType=sa]Az.ManagedServiceIdentity,1.1.0 +pac88,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ManagedServices.3.0.0.nupkg;sourceType=sa]Az.ManagedServices,3.0.0 +pac89,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ManagementPartner.0.7.2.nupkg;sourceType=sa]Az.ManagementPartner,0.7.2 +pac90,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Maps.0.8.0.nupkg;sourceType=sa]Az.Maps,0.8.0 +pac91,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MariaDb.0.2.0.nupkg;sourceType=sa]Az.MariaDb,0.2.0 +pac92,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Marketplace.0.3.0.nupkg;sourceType=sa]Az.Marketplace,0.3.0 +pac93,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MarketplaceOrdering.2.0.0.nupkg;sourceType=sa]Az.MarketplaceOrdering,2.0.0 +pac94,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Media.1.1.1.nupkg;sourceType=sa]Az.Media,1.1.1 +pac95,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Migrate.2.1.0.nupkg;sourceType=sa]Az.Migrate,2.1.0 +pac96,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MixedReality.0.2.0.nupkg;sourceType=sa]Az.MixedReality,0.2.0 +pac97,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Monitor.4.4.0.nupkg;sourceType=sa]Az.Monitor,4.4.0 +pac98,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MonitoringSolutions.0.1.0.nupkg;sourceType=sa]Az.MonitoringSolutions,0.1.0 +pac99,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MySql.1.1.0.nupkg;sourceType=sa]Az.MySql,1.1.0 +pac100,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetAppFiles.0.11.0.nupkg;sourceType=sa]Az.NetAppFiles,0.11.0 +pac101,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Network.5.3.0.nupkg;sourceType=sa]Az.Network,5.3.0 +pac102,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkFunction.0.1.2.nupkg;sourceType=sa]Az.NetworkFunction,0.1.2 +pac103,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Nginx.0.1.0.nupkg;sourceType=sa]Az.Nginx,0.1.0 +pac104,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NotificationHubs.1.1.1.nupkg;sourceType=sa]Az.NotificationHubs,1.1.1 +pac105,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.OperationalInsights.3.2.0.nupkg;sourceType=sa]Az.OperationalInsights,3.2.0 +pac106,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Orbital.0.1.0.nupkg;sourceType=sa]Az.Orbital,0.1.0 +pac107,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Peering.0.3.1.nupkg;sourceType=sa]Az.Peering,0.3.1 +pac108,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PolicyInsights.1.5.1.nupkg;sourceType=sa]Az.PolicyInsights,1.5.1 +pac109,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Portal.0.1.0.nupkg;sourceType=sa]Az.Portal,0.1.0 +pac110,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PostgreSql.1.1.0.nupkg;sourceType=sa]Az.PostgreSql,1.1.0 +pac111,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PowerBIEmbedded.1.2.0.nupkg;sourceType=sa]Az.PowerBIEmbedded,1.2.0 +pac112,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PrivateDns.1.0.3.nupkg;sourceType=sa]Az.PrivateDns,1.0.3 +pac113,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ProviderHub.0.2.0.nupkg;sourceType=sa]Az.ProviderHub,0.2.0 +pac114,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Purview.0.2.0.nupkg;sourceType=sa]Az.Purview,0.2.0 +pac115,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Quota.0.1.0.nupkg;sourceType=sa]Az.Quota,0.1.0 +pac116,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RecoveryServices.6.1.2.nupkg;sourceType=sa]Az.RecoveryServices,6.1.2 +pac117,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisCache.1.7.0.nupkg;sourceType=sa]Az.RedisCache,1.7.0 +pac118,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisEnterpriseCache.1.1.0.nupkg;sourceType=sa]Az.RedisEnterpriseCache,1.1.0 +pac119,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Relay.1.0.3.nupkg;sourceType=sa]Az.Relay,1.0.3 +pac120,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Reservations.0.11.0.nupkg;sourceType=sa]Az.Reservations,0.11.0 +pac121,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceGraph.0.13.0.nupkg;sourceType=sa]Az.ResourceGraph,0.13.0 +pac122,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceMover.1.1.0.nupkg;sourceType=sa]Az.ResourceMover,1.1.0 +pac123,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Resources.6.5.1.nupkg;sourceType=sa]Az.Resources,6.5.1 +pac124,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Search.0.8.0.nupkg;sourceType=sa]Az.Search,0.8.0 +pac125,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Security.1.3.0.nupkg;sourceType=sa]Az.Security,1.3.0 +pac126,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SecurityInsights.3.0.1.nupkg;sourceType=sa]Az.SecurityInsights,3.0.1 +pac127,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceBus.2.1.0.nupkg;sourceType=sa]Az.ServiceBus,2.1.0 +pac128,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceFabric.3.1.0.nupkg;sourceType=sa]Az.ServiceFabric,3.1.0 +pac129,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceLinker.0.1.0.nupkg;sourceType=sa]Az.ServiceLinker,0.1.0 +pac130,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SignalR.1.5.0.nupkg;sourceType=sa]Az.SignalR,1.5.0 +pac131,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SpringCloud.0.3.0.nupkg;sourceType=sa]Az.SpringCloud,0.3.0 +pac132,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sql.4.2.0.nupkg;sourceType=sa]Az.Sql,4.2.0 +pac133,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SqlVirtualMachine.1.1.0.nupkg;sourceType=sa]Az.SqlVirtualMachine,1.1.0 +pac134,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Ssh.0.1.0.nupkg;sourceType=sa]Az.Ssh,0.1.0 +pac135,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCI.1.4.1.nupkg;sourceType=sa]Az.StackHCI,1.4.1 +pac136,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Storage.5.3.0.nupkg;sourceType=sa]Az.Storage,5.3.0 +pac137,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageMover.0.1.0.nupkg;sourceType=sa]Az.StorageMover,0.1.0 +pac138,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageSync.1.7.0.nupkg;sourceType=sa]Az.StorageSync,1.7.0 +pac139,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StreamAnalytics.2.0.0.nupkg;sourceType=sa]Az.StreamAnalytics,2.0.0 +pac140,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Subscription.0.8.1.nupkg;sourceType=sa]Az.Subscription,0.8.1 +pac141,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Support.1.0.0.nupkg;sourceType=sa]Az.Support,1.0.0 +pac142,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Synapse.2.2.0.nupkg;sourceType=sa]Az.Synapse,2.2.0 +pac143,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TimeSeriesInsights.0.2.0.nupkg;sourceType=sa]Az.TimeSeriesInsights,0.2.0 +pac144,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TrafficManager.1.1.0.nupkg;sourceType=sa]Az.TrafficManager,1.1.0 +pac145,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VMware.0.5.0.nupkg;sourceType=sa]Az.VMware,0.5.0 +pac146,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VoiceServices.0.1.0.nupkg;sourceType=sa]Az.VoiceServices,0.1.0 +pac147,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Websites.2.12.1.nupkg;sourceType=sa]Az.Websites,2.12.1 +pac148,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.WindowsIotServices.0.1.0.nupkg;sourceType=sa]Az.WindowsIotServices,0.1.0 diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json b/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json index 7600fd4147c3..45a90586e663 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Accounts", - "ModuleVersion": "2.11.0", + "ModuleVersion": "2.11.1", "Cmdlets": [ { "VerbName": "Add", @@ -469,7 +469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1023,7 +1023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1323,7 +1323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1399,7 +1399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1445,7 +1445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1974,7 +1974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2039,7 +2039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2132,7 +2132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2212,7 +2212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2288,7 +2288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2631,7 +2631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2765,7 +2765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2977,7 +2977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3174,7 +3174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3416,7 +3416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3628,7 +3628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3867,7 +3867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4084,7 +4084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4338,7 +4338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4554,7 +4554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4611,7 +4611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication", "Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -4662,7 +4662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4697,7 +4697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5150,7 +5150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5204,7 +5204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5284,7 +5284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5355,7 +5355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5426,7 +5426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5487,7 +5487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5533,7 +5533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5590,7 +5590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication", "Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -5641,7 +5641,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5676,7 +5676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6118,7 +6118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpiresOn": "System.DateTimeOffset", "Token": "System.String", @@ -6403,7 +6403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Scope": "Microsoft.Azure.PowerShell.Common.Config.ConfigScope", "Value": "System.Object", @@ -6959,7 +6959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication", "Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -7010,7 +7010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7045,7 +7045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7098,7 +7098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -8178,7 +8178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8243,7 +8243,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8304,7 +8304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8350,7 +8350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8403,7 +8403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Int32", "Headers": "System.Net.Http.Headers.HttpResponseHeaders", @@ -9102,7 +9102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common", "Name": "Microsoft.Azure.Commands.Common.VTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProfileName": "System.String" }, @@ -9263,7 +9263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9362,7 +9362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9438,7 +9438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9529,7 +9529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9687,7 +9687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9737,7 +9737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9897,7 +9897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10005,7 +10005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10096,7 +10096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10202,7 +10202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10270,7 +10270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorCategory": "System.Management.Automation.ErrorCategoryInfo", "ErrorDetails": "System.Management.Automation.ErrorDetails", @@ -10321,7 +10321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InnerException": "System.Boolean", "Exception": "System.Exception", @@ -10385,7 +10385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", "ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", @@ -10950,7 +10950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11019,7 +11019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11065,7 +11065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11126,7 +11126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11448,7 +11448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11557,7 +11557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11680,7 +11680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11805,7 +11805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11938,7 +11938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12052,7 +12052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12147,7 +12147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12203,7 +12203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -12270,7 +12270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12335,7 +12335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12396,7 +12396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12884,7 +12884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13092,7 +13092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13657,7 +13657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13957,7 +13957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14111,7 +14111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Scope": "Microsoft.Azure.PowerShell.Common.Config.ConfigScope", "Value": "System.Object", @@ -14964,7 +14964,7 @@ "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "Verb": "System.String", @@ -15041,7 +15041,7 @@ "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "ResponseStatusCode": "System.String",