diff --git a/src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs b/src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs index a5f78614654e..f155d095dc67 100644 --- a/src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs +++ b/src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs @@ -19,6 +19,8 @@ using System.Threading; using System.Threading.Tasks; +using Azure.Identity; + using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core; @@ -29,6 +31,7 @@ using Microsoft.Azure.Commands.Profile.Properties; using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.PowerShell.Authenticators; +using Microsoft.Identity.Client; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; @@ -398,12 +401,36 @@ public override void ExecuteCmdlet() } HandleActions(); - var result = (PSAzureProfile) (task.ConfigureAwait(false).GetAwaiter().GetResult()); - WriteObject(result); + + try + { + var result = (PSAzureProfile)(task.ConfigureAwait(false).GetAwaiter().GetResult()); + WriteObject(result); + } + catch (AuthenticationFailedException ex) + { + if(IsUnableToOpenWebPageError(ex)) + { + WriteWarning(Resources.InteractiveAuthNotSupported); + WriteDebug(ex.ToString()); + } + else + { + WriteWarning(Resources.SuggestToUseDeviceCodeAuth); + WriteDebug(ex.ToString()); + throw; + } + } }); } } + private bool IsUnableToOpenWebPageError(AuthenticationFailedException exception) + { + return exception.InnerException is MsalClientException && ((MsalClientException)exception.InnerException)?.ErrorCode == MsalError.LinuxXdgOpen + || (exception.Message?.ToLower()?.Contains("unable to open a web page") ?? false); + } + private ConcurrentQueue _tasks = new ConcurrentQueue(); private void HandleActions() diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index 7ec9b7331032..7d9b3f57f530 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: 10/23/2020 +# Generated on: 11/2/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.1.0' +ModuleVersion = '2.1.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -143,8 +143,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* [Breaking Change] Removed ''Get-AzProfile'' and ''Select-AzProfile'' -* Replaced Azure Directory Authentication Library with Microsoft Authentication Library(MSAL)' + ReleaseNotes = '* Fixed one issue related to MSI' # Prerelease string of this module # Prerelease = '' diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 12b14e0f0d7d..51b77b153423 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -19,6 +19,14 @@ --> ## Upcoming Release +## Version 2.1.2 +* Fixed one issue related to MSI + +## Version 2.1.1 +* Fixed the issue that token is not renewed after expiring for LRO [#13367] +* Fixed the issue that AccountId is not respected in MSI [#13376] +* Fixed the issue that error message is unclear if browser is not avaialable for Interactive auth [#13340] + ## Version 2.1.0 * [Breaking Change] Removed `Get-AzProfile` and `Select-AzProfile` * Replaced Azure Directory Authentication Library with Microsoft Authentication Library(MSAL) diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs index 21f0f62ae534..fd131ade83d4 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.1.0")] -[assembly: AssemblyFileVersion("2.1.0")] +[assembly: AssemblyVersion("2.1.2")] +[assembly: AssemblyFileVersion("2.1.2")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")] #endif diff --git a/src/Accounts/Accounts/Properties/Resources.Designer.cs b/src/Accounts/Accounts/Properties/Resources.Designer.cs index a5347f610424..93dbc8ff3455 100644 --- a/src/Accounts/Accounts/Properties/Resources.Designer.cs +++ b/src/Accounts/Accounts/Properties/Resources.Designer.cs @@ -564,6 +564,15 @@ internal static string ImportContextTarget { } } + /// + /// Looks up a localized string similar to Interactive authentication is not supported in this session, please run Connect-AzAccount using switch -DeviceCode.. + /// + internal static string InteractiveAuthNotSupported { + get { + return ResourceManager.GetString("InteractiveAuthNotSupported", resourceCulture); + } + } + /// /// Looks up a localized string similar to The context is invalid. Please login using Connect-AzAccount.. /// @@ -1068,6 +1077,15 @@ internal static string SubscriptionOrTenantRequired { } } + /// + /// Looks up a localized string similar to Please run 'Connect-AzAccount -DeviceCode' if browser is not supported in this session.. + /// + internal static string SuggestToUseDeviceCodeAuth { + get { + return ResourceManager.GetString("SuggestToUseDeviceCodeAuth", resourceCulture); + } + } + /// /// Looks up a localized string similar to Could not authenticate with tenant {0}. Please ensure that your account has access to this tenant and log in with Connect-AzAccount. /// diff --git a/src/Accounts/Accounts/Properties/Resources.resx b/src/Accounts/Accounts/Properties/Resources.resx index 863dc083071d..2f6c32be4740 100644 --- a/src/Accounts/Accounts/Properties/Resources.resx +++ b/src/Accounts/Accounts/Properties/Resources.resx @@ -513,4 +513,10 @@ Use a web browser to open the page {0}. + + Interactive authentication is not supported in this session, please run Connect-AzAccount using switch -DeviceCode. + + + Please run 'Connect-AzAccount -DeviceCode' if browser is not supported in this session. + \ No newline at end of file diff --git a/src/Accounts/Accounts/help/Connect-AzAccount.md b/src/Accounts/Accounts/help/Connect-AzAccount.md index 5116e68acac1..4e30dd2e7c19 100644 --- a/src/Accounts/Accounts/help/Connect-AzAccount.md +++ b/src/Accounts/Accounts/help/Connect-AzAccount.md @@ -610,8 +610,7 @@ Accept wildcard characters: False ### -UseDeviceAuthentication -Use device code authentication instead of a browser control. This is the default authentication type -for PowerShell version 6 and higher. +Use device code authentication instead of a browser control. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/src/Accounts/Authentication/Properties/AssemblyInfo.cs b/src/Accounts/Authentication/Properties/AssemblyInfo.cs index 03b609d38ec2..97704350e1a6 100644 --- a/src/Accounts/Authentication/Properties/AssemblyInfo.cs +++ b/src/Accounts/Authentication/Properties/AssemblyInfo.cs @@ -43,5 +43,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.1.0")] -[assembly: AssemblyFileVersion("2.1.0")] +[assembly: AssemblyVersion("2.1.2")] +[assembly: AssemblyFileVersion("2.1.2")] diff --git a/src/Accounts/Authenticators/DeviceCodeAuthenticator.cs b/src/Accounts/Authenticators/DeviceCodeAuthenticator.cs index 6236477086a8..4fb07a63e886 100644 --- a/src/Accounts/Authenticators/DeviceCodeAuthenticator.cs +++ b/src/Accounts/Authenticators/DeviceCodeAuthenticator.cs @@ -57,7 +57,8 @@ public override Task Authenticate(AuthenticationParameters paramet var authTask = codeCredential.AuthenticateAsync(requestContext, source.Token); return MsalAccessToken.GetAccessTokenAsync( authTask, - () => codeCredential.GetTokenAsync(requestContext, source.Token), + codeCredential, + requestContext, source.Token); } diff --git a/src/Accounts/Authenticators/InteractiveUserAuthenticator.cs b/src/Accounts/Authenticators/InteractiveUserAuthenticator.cs index c71443fa22e5..2367b6f3deba 100644 --- a/src/Accounts/Authenticators/InteractiveUserAuthenticator.cs +++ b/src/Accounts/Authenticators/InteractiveUserAuthenticator.cs @@ -71,7 +71,8 @@ public override Task Authenticate(AuthenticationParameters paramet return MsalAccessToken.GetAccessTokenAsync( authTask, - () => browserCredential.GetTokenAsync(requestContext, source.Token), + browserCredential, + requestContext, source.Token); } diff --git a/src/Accounts/Authenticators/ManagedServiceIdentityAuthenticator.cs b/src/Accounts/Authenticators/ManagedServiceIdentityAuthenticator.cs index bc151ad04054..de91d6af2059 100644 --- a/src/Accounts/Authenticators/ManagedServiceIdentityAuthenticator.cs +++ b/src/Accounts/Authenticators/ManagedServiceIdentityAuthenticator.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; @@ -30,6 +31,7 @@ public class ManagedServiceIdentityAuthenticator : DelegatingAuthenticator DefaultMSILoginUri = "http://169.254.169.254/metadata/identity/oauth2/token", DefaultBackupMSILoginUri = "http://localhost:50342/oauth2/token"; + private static Regex SystemMsiNameRegex = new Regex(@"MSI@\d+"); public override Task Authenticate(AuthenticationParameters parameters, CancellationToken cancellationToken) { @@ -37,9 +39,10 @@ public override Task Authenticate(AuthenticationParameters paramet var scopes = new[] { GetResourceId(msiParameters.ResourceId, msiParameters.Environment) }; var requestContext = new TokenRequestContext(scopes); - ManagedIdentityCredential identityCredential = new ManagedIdentityCredential(); - var tokenTask = identityCredential.GetTokenAsync(requestContext); - return MsalAccessToken.GetAccessTokenAsync(tokenTask, msiParameters.TenantId, msiParameters.Account.Id); + var userAccountId = SystemMsiNameRegex.IsMatch(msiParameters.Account.Id) ? null : msiParameters.Account.Id; + ManagedIdentityCredential identityCredential = new ManagedIdentityCredential(userAccountId); + return MsalAccessToken.GetAccessTokenAsync(identityCredential, requestContext, cancellationToken, + msiParameters.TenantId, msiParameters.Account.Id); } public override bool CanAuthenticate(AuthenticationParameters parameters) diff --git a/src/Accounts/Authenticators/MsalAccessToken.cs b/src/Accounts/Authenticators/MsalAccessToken.cs index 799b984440c2..41c506f718c0 100644 --- a/src/Accounts/Authenticators/MsalAccessToken.cs +++ b/src/Accounts/Authenticators/MsalAccessToken.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.PowerShell.Authenticators { public class MsalAccessToken : IAccessToken { - public string AccessToken { get; } + public string AccessToken { get; private set; } public string UserId { get; } @@ -39,9 +39,21 @@ public class MsalAccessToken : IAccessToken public IDictionary ExtendedProperties { get; } = new ConcurrentDictionary(StringComparer.OrdinalIgnoreCase); - public MsalAccessToken(string token, string tenantId, string userId = null, string homeAccountId = null) + private DateTimeOffset ExpiredOn { get; set; } + + private readonly static TimeSpan ExpirationThreshold = TimeSpan.FromMinutes(5); + + private TokenCredential TokenCredential { get; set; } + + private TokenRequestContext TokenRequestContext { get; set; } + + public MsalAccessToken(TokenCredential tokenCredential, TokenRequestContext tokenRequestContext, + string token, DateTimeOffset expiresOn, string tenantId, string userId = null, string homeAccountId = null) { + TokenCredential = tokenCredential; + TokenRequestContext = tokenRequestContext; AccessToken = token; + ExpiredOn = expiresOn; UserId = userId; TenantId = tenantId; HomeAccountId = homeAccountId; @@ -49,40 +61,57 @@ public MsalAccessToken(string token, string tenantId, string userId = null, stri public void AuthorizeRequest(Action authTokenSetter) { + Renew(); authTokenSetter("Bearer", AccessToken); } public static async Task GetAccessTokenAsync( - ValueTask result, + TokenCredential tokenCredential, + TokenRequestContext requestContext, + CancellationToken cancellationToken, string tenantId = null, string userId = null, string homeAccountId = "") { - var token = await result; - return new MsalAccessToken(token.Token, tenantId, userId, homeAccountId); + var token = await tokenCredential.GetTokenAsync(requestContext, cancellationToken); + return new MsalAccessToken(tokenCredential, requestContext, token.Token, token.ExpiresOn, tenantId, userId, homeAccountId); } - public static async Task GetAccessTokenAsync( - ValueTask result, - Action action, - string tenantId = null, - string userId = null) - { - var token = await result; - action(); - return new MsalAccessToken(token.Token, tenantId, userId); - } public static async Task GetAccessTokenAsync( Task authTask, - Func> getTokenAction, - CancellationToken cancellationToken = default(CancellationToken)) + TokenCredential tokenCredential, + TokenRequestContext requestContext, + CancellationToken cancellationToken) { var record = await authTask; cancellationToken.ThrowIfCancellationRequested(); - var token = await getTokenAction(); + var token = await tokenCredential.GetTokenAsync(requestContext, cancellationToken); - return new MsalAccessToken(token.Token, record.TenantId, record.Username, record.HomeAccountId); + return new MsalAccessToken(tokenCredential, requestContext, token.Token, token.ExpiresOn, record.TenantId, record.Username, record.HomeAccountId); + } + + + private void Renew() + { + if(IsNearExpiration()) + { + var token = TokenCredential.GetToken(TokenRequestContext, default(CancellationToken)); + AccessToken = token.Token; + ExpiredOn = token.ExpiresOn; + } + } + + private bool IsNearExpiration() + { +#if DEBUG + if (Environment.GetEnvironmentVariable("FORCE_EXPIRED_ACCESS_TOKEN") != null) + { + return true; + } +#endif + var timeUntilExpiration = ExpiredOn - DateTimeOffset.UtcNow; + return timeUntilExpiration < ExpirationThreshold; } } } diff --git a/src/Accounts/Authenticators/ServicePrincipalAuthenticator.cs b/src/Accounts/Authenticators/ServicePrincipalAuthenticator.cs index c71b3075a65b..2e73eaa968ef 100644 --- a/src/Accounts/Authenticators/ServicePrincipalAuthenticator.cs +++ b/src/Accounts/Authenticators/ServicePrincipalAuthenticator.cs @@ -30,7 +30,6 @@ namespace Microsoft.Azure.PowerShell.Authenticators public class ServicePrincipalAuthenticator : DelegatingAuthenticator { private const string AuthenticationFailedMessage = "No certificate thumbprint or secret provided for the given service principal '{0}'."; - private ConcurrentDictionary ClientCertCredentialMap = new ConcurrentDictionary(StringComparer.OrdinalIgnoreCase); //MSAL doesn't cache Service Principal into msal.cache public override Task Authenticate(AuthenticationParameters parameters, CancellationToken cancellationToken) @@ -54,31 +53,23 @@ public override Task Authenticate(AuthenticationParameters paramet if (!string.IsNullOrEmpty(spParameters.Thumbprint)) { //Service Principal with Certificate - ClientCertificateCredential certCredential; - if (!ClientCertCredentialMap.TryGetValue(spParameters.ApplicationId, out certCredential)) - { - //first time login - var certificate = AzureSession.Instance.DataStore.GetCertificate(spParameters.Thumbprint); - certCredential = new ClientCertificateCredential(tenantId, spParameters.ApplicationId, certificate, options); - var tokenTask = certCredential.GetTokenAsync(requestContext, cancellationToken); - return MsalAccessToken.GetAccessTokenAsync(tokenTask, - () => { ClientCertCredentialMap[spParameters.ApplicationId] = certCredential; }, - spParameters.TenantId, - spParameters.ApplicationId); - } - else - { - var tokenTask = certCredential.GetTokenAsync(requestContext, cancellationToken); - return MsalAccessToken.GetAccessTokenAsync(tokenTask, spParameters.TenantId, spParameters.ApplicationId); - } + var certificate = AzureSession.Instance.DataStore.GetCertificate(spParameters.Thumbprint); + ClientCertificateCredential certCredential = new ClientCertificateCredential(tenantId, spParameters.ApplicationId, certificate, options); + return MsalAccessToken.GetAccessTokenAsync( + certCredential, + requestContext, + cancellationToken, + spParameters.TenantId, + spParameters.ApplicationId); } else if (spParameters.Secret != null) { // service principal with secret var secretCredential = new ClientSecretCredential(tenantId, spParameters.ApplicationId, spParameters.Secret.ConvertToString(), options); - var tokenTask = secretCredential.GetTokenAsync(requestContext, cancellationToken); return MsalAccessToken.GetAccessTokenAsync( - tokenTask, + secretCredential, + requestContext, + cancellationToken, spParameters.TenantId, spParameters.ApplicationId); } diff --git a/src/Accounts/Authenticators/SilentAuthenticator.cs b/src/Accounts/Authenticators/SilentAuthenticator.cs index 4eb2389de4a7..987512906314 100644 --- a/src/Accounts/Authenticators/SilentAuthenticator.cs +++ b/src/Accounts/Authenticators/SilentAuthenticator.cs @@ -49,7 +49,7 @@ public override Task Authenticate(AuthenticationParameters paramet var cacheCredential = new SharedTokenCacheCredential(options); var requestContext = new TokenRequestContext(scopes); var tokenTask = cacheCredential.GetTokenAsync(requestContext); - return MsalAccessToken.GetAccessTokenAsync(tokenTask, silentParameters.TenantId, silentParameters.UserId, silentParameters.HomeAccountId); + return MsalAccessToken.GetAccessTokenAsync(cacheCredential, requestContext, cancellationToken, silentParameters.TenantId, silentParameters.UserId, silentParameters.HomeAccountId); } public override bool CanAuthenticate(AuthenticationParameters parameters) diff --git a/src/Accounts/Authenticators/UsernamePasswordAuthenticator.cs b/src/Accounts/Authenticators/UsernamePasswordAuthenticator.cs index 4b84614cb52f..272fb476e133 100644 --- a/src/Accounts/Authenticators/UsernamePasswordAuthenticator.cs +++ b/src/Accounts/Authenticators/UsernamePasswordAuthenticator.cs @@ -65,7 +65,8 @@ public override Task Authenticate(AuthenticationParameters paramet var authTask = passwordCredential.AuthenticateAsync(requestContext, cancellationToken); return MsalAccessToken.GetAccessTokenAsync( authTask, - () => passwordCredential.GetTokenAsync(requestContext, cancellationToken), + passwordCredential, + requestContext, cancellationToken); } else diff --git a/src/Advisor/Advisor/Az.Advisor.psd1 b/src/Advisor/Advisor/Az.Advisor.psd1 index 157a3ebbfdeb..ae3fd4fa4d8a 100644 --- a/src/Advisor/Advisor/Az.Advisor.psd1 +++ b/src/Advisor/Advisor/Az.Advisor.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Advisor.dll' diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1 index 25f5f6d94599..9e166dd2cc1c 100644 --- a/src/Aks/Aks/Az.Aks.psd1 +++ b/src/Aks/Aks/Az.Aks.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'YamlDotNet.dll', 'AutoMapper.dll', diff --git a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 index 3b92a2924987..f1d5735a19d1 100644 --- a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 +++ b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.AlertsManagement.dll' diff --git a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 index 3d53b393a44d..9b2f00d2c16d 100644 --- a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 +++ b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Analysis.dll' diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 index c64601f487f5..ce084de991cc 100644 --- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 +++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.ApiManagement.dll', diff --git a/src/AppConfiguration/Az.AppConfiguration.psd1 b/src/AppConfiguration/Az.AppConfiguration.psd1 index 3e9054d669c2..55f3b6a34d3f 100644 --- a/src/AppConfiguration/Az.AppConfiguration.psd1 +++ b/src/AppConfiguration/Az.AppConfiguration.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.AppConfiguration.private.dll' diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 index fff05ad32f2d..c17a0726dfa6 100644 --- a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 +++ b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ApplicationInsights.dll' diff --git a/src/Attestation/Attestation/Az.Attestation.psd1 b/src/Attestation/Attestation/Az.Attestation.psd1 index 172745c71e37..7ff604b2c133 100644 --- a/src/Attestation/Attestation/Az.Attestation.psd1 +++ b/src/Attestation/Attestation/Az.Attestation.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll', diff --git a/src/Automation/Automation/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1 index 6218ed7c98d7..97790ac1d5c9 100644 --- a/src/Automation/Automation/Az.Automation.psd1 +++ b/src/Automation/Automation/Az.Automation.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Automation.dll' diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1 index 966a48e5daaa..80e09cc25965 100644 --- a/src/Batch/Batch/Az.Batch.psd1 +++ b/src/Batch/Batch/Az.Batch.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Batch.dll', 'Microsoft.Azure.Management.Batch.dll', diff --git a/src/Billing/Billing/Az.Billing.psd1 b/src/Billing/Billing/Az.Billing.psd1 index d42b9cc1f4f8..6ad580518e30 100644 --- a/src/Billing/Billing/Az.Billing.psd1 +++ b/src/Billing/Billing/Az.Billing.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Billing.dll', diff --git a/src/Blockchain/Az.Blockchain.psd1 b/src/Blockchain/Az.Blockchain.psd1 index ef5ffce109a7..c1222f52344b 100644 --- a/src/Blockchain/Az.Blockchain.psd1 +++ b/src/Blockchain/Az.Blockchain.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.Blockchain.private.dll' diff --git a/src/Blueprint/Blueprint/Az.Blueprint.psd1 b/src/Blueprint/Blueprint/Az.Blueprint.psd1 index ce9b387bf695..50313a132bfb 100644 --- a/src/Blueprint/Blueprint/Az.Blueprint.psd1 +++ b/src/Blueprint/Blueprint/Az.Blueprint.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Blueprint.dll' diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1 index e7e996b3c6c0..e255d061b548 100644 --- a/src/Cdn/Cdn/Az.Cdn.psd1 +++ b/src/Cdn/Cdn/Az.Cdn.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Cdn.dll' diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 index 3f49f379488e..7e2bbc369348 100644 --- a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 +++ b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.CognitiveServices.dll' diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index 81bc90e20e6a..7058c5d5fc99 100644 --- a/src/Compute/Compute/Az.Compute.psd1 +++ b/src/Compute/Compute/Az.Compute.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Compute.dll', diff --git a/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1 b/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1 index 76b9f178d412..f968bbc169eb 100644 --- a/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1 +++ b/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1 @@ -10,7 +10,7 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' RequiredAssemblies = './bin/Az.ConnectedKubernetes.private.dll' - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) FormatsToProcess = './Az.ConnectedKubernetes.format.ps1xml' FunctionsToExport = 'Get-AzConnectedKubernetes', 'New-AzConnectedKubernetes', 'Remove-AzConnectedKubernetes', 'Update-AzConnectedKubernetes' AliasesToExport = '*' diff --git a/src/ConnectedMachine/Az.ConnectedMachine.psd1 b/src/ConnectedMachine/Az.ConnectedMachine.psd1 index 09e2b66fadcf..9d4b1b8b0b0e 100644 --- a/src/ConnectedMachine/Az.ConnectedMachine.psd1 +++ b/src/ConnectedMachine/Az.ConnectedMachine.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'bin\Az.ConnectedMachine.private.dll' diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 index c6ef073356f8..9b12177b3eeb 100644 --- a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 +++ b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', diff --git a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 index e7c065d982c5..e4b53ff993ee 100644 --- a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 +++ b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ContainerRegistry.dll', diff --git a/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 b/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 index 83745fed384e..b08f1a74c688 100644 --- a/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 +++ b/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.CosmosDB.dll' diff --git a/src/CustomProviders/Az.CustomProviders.psd1 b/src/CustomProviders/Az.CustomProviders.psd1 index f10f76bbd804..2f01a078ad20 100644 --- a/src/CustomProviders/Az.CustomProviders.psd1 +++ b/src/CustomProviders/Az.CustomProviders.psd1 @@ -10,7 +10,7 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' RequiredAssemblies = './bin/Az.CustomProviders.private.dll' - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) FormatsToProcess = './Az.CustomProviders.format.ps1xml' FunctionsToExport = 'Get-AzCustomProvider', 'Get-AzCustomProviderAssociation', 'New-AzCustomProvider', 'New-AzCustomProviderAssociation', 'Remove-AzCustomProvider', 'Remove-AzCustomProviderAssociation', 'Update-AzCustomProvider' AliasesToExport = '*' diff --git a/src/DataBox/DataBox/Az.DataBox.psd1 b/src/DataBox/DataBox/Az.DataBox.psd1 index 62084dcccfb0..84d5e01b8e90 100644 --- a/src/DataBox/DataBox/Az.DataBox.psd1 +++ b/src/DataBox/DataBox/Az.DataBox.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataBox.dll' diff --git a/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 b/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 index 3d1bf6ad36c8..98ecbe694b4f 100644 --- a/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 +++ b/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataBoxEdge.dll' diff --git a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 index 638c9ded0c07..22be16b4483d 100644 --- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 +++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataFactory.dll', diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 index b6279e5766dd..306941c5959b 100644 --- a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 +++ b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Analytics.dll' diff --git a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 index 1a711c510d90..defc84662f7a 100644 --- a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 +++ b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Store.dll', diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1 index c17cc14ea931..698e7efd6f2f 100644 --- a/src/DataMigration/DataMigration/Az.DataMigration.psd1 +++ b/src/DataMigration/DataMigration/Az.DataMigration.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataMigration.dll' diff --git a/src/DataShare/DataShare/Az.DataShare.psd1 b/src/DataShare/DataShare/Az.DataShare.psd1 index 7d7de3f8fe66..486b51677041 100644 --- a/src/DataShare/DataShare/Az.DataShare.psd1 +++ b/src/DataShare/DataShare/Az.DataShare.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataShare.dll' diff --git a/src/Databricks/Az.Databricks.psd1 b/src/Databricks/Az.Databricks.psd1 index 1e894d7889e4..24a3ab955c50 100644 --- a/src/Databricks/Az.Databricks.psd1 +++ b/src/Databricks/Az.Databricks.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.Databricks.private.dll' diff --git a/src/DedicatedHsm/Az.DedicatedHsm.psd1 b/src/DedicatedHsm/Az.DedicatedHsm.psd1 index e90028655f2a..19918aaa6473 100644 --- a/src/DedicatedHsm/Az.DedicatedHsm.psd1 +++ b/src/DedicatedHsm/Az.DedicatedHsm.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.DedicatedHsm.private.dll' diff --git a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 index 39de5c0e02af..71e8bf9c2c1c 100644 --- a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 +++ b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 @@ -52,7 +52,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DeploymentManager.dll' diff --git a/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 b/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 index d18bcfe263d1..739f433b0918 100644 --- a/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 +++ b/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.DesktopVirtualization.private.dll' diff --git a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 index 30a380a485a7..53e6d408541b 100644 --- a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 +++ b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DevSpaces.dll' diff --git a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 index ad0301ecc7d3..f50560534c9b 100644 --- a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 +++ b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DevTestLabs.dll' diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 index 85e9f6179d2a..66eb00c55c9f 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DeviceProvisioningServices.dll', diff --git a/src/Dns/Dns/Az.Dns.psd1 b/src/Dns/Dns/Az.Dns.psd1 index e43ff523bbf5..73d81a25ba28 100644 --- a/src/Dns/Dns/Az.Dns.psd1 +++ b/src/Dns/Dns/Az.Dns.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Dns.dll' diff --git a/src/EventGrid/EventGrid/Az.EventGrid.psd1 b/src/EventGrid/EventGrid/Az.EventGrid.psd1 index 0bf63dd2cf88..37075c84f3f4 100644 --- a/src/EventGrid/EventGrid/Az.EventGrid.psd1 +++ b/src/EventGrid/EventGrid/Az.EventGrid.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.EventGrid.dll' diff --git a/src/EventHub/EventHub/Az.EventHub.psd1 b/src/EventHub/EventHub/Az.EventHub.psd1 index 6cb3f11519dc..2cbe3aa29970 100644 --- a/src/EventHub/EventHub/Az.EventHub.psd1 +++ b/src/EventHub/EventHub/Az.EventHub.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.EventHub.dll' diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index 2de461b960b9..a2209185523c 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.FrontDoor.dll' diff --git a/src/Functions/Az.Functions.psd1 b/src/Functions/Az.Functions.psd1 index 631bf82cb21c..232f5ad6b039 100644 --- a/src/Functions/Az.Functions.psd1 +++ b/src/Functions/Az.Functions.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'bin\Az.Functions.private.dll' diff --git a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 index 9cf093a148b4..f79fd9847f96 100644 --- a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 +++ b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.GuestConfiguration.dll' diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index 839cfe577388..9a3f05e9244a 100644 --- a/src/HDInsight/HDInsight/Az.HDInsight.psd1 +++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.HDInsight.dll', diff --git a/src/HPCCache/HPCCache/Az.HPCCache.psd1 b/src/HPCCache/HPCCache/Az.HPCCache.psd1 index 6f34c041f1ef..f76e8547f56d 100644 --- a/src/HPCCache/HPCCache/Az.HPCCache.psd1 +++ b/src/HPCCache/HPCCache/Az.HPCCache.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.StorageCache.dll' diff --git a/src/HanaOnAzure/Az.HanaOnAzure.psd1 b/src/HanaOnAzure/Az.HanaOnAzure.psd1 index a7f2db4b6d51..24cfa83c1916 100644 --- a/src/HanaOnAzure/Az.HanaOnAzure.psd1 +++ b/src/HanaOnAzure/Az.HanaOnAzure.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.HanaOnAzure.private.dll' diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 index f1e0f402c045..171e289bec14 100644 --- a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 +++ b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.HealthcareApis.dll' diff --git a/src/ImageBuilder/Az.ImageBuilder.psd1 b/src/ImageBuilder/Az.ImageBuilder.psd1 index 64fbda057d50..afeae045017f 100644 --- a/src/ImageBuilder/Az.ImageBuilder.psd1 +++ b/src/ImageBuilder/Az.ImageBuilder.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.ImageBuilder.private.dll' diff --git a/src/ImportExport/Az.ImportExport.psd1 b/src/ImportExport/Az.ImportExport.psd1 index e78078b52925..79076e7a9158 100644 --- a/src/ImportExport/Az.ImportExport.psd1 +++ b/src/ImportExport/Az.ImportExport.psd1 @@ -10,7 +10,7 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' RequiredAssemblies = './bin/Az.ImportExport.private.dll' - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) FormatsToProcess = './Az.ImportExport.format.ps1xml' FunctionsToExport = 'Get-AzImportExport', 'Get-AzImportExportBitLockerKey', 'Get-AzImportExportLocation', 'New-AzImportExport', 'New-AzImportExportDriveListObject', 'Remove-AzImportExport', 'Update-AzImportExport' AliasesToExport = '*' diff --git a/src/IotCentral/IotCentral/Az.IotCentral.psd1 b/src/IotCentral/IotCentral/Az.IotCentral.psd1 index d0dae5a77b4c..680c95ff5a05 100644 --- a/src/IotCentral/IotCentral/Az.IotCentral.psd1 +++ b/src/IotCentral/IotCentral/Az.IotCentral.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.IotCentral.dll' diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1 index 1b22ab8f5d21..d37beb0b252d 100644 --- a/src/IotHub/IotHub/Az.IotHub.psd1 +++ b/src/IotHub/IotHub/Az.IotHub.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll', diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1 index 61c790648026..a56e34e54925 100644 --- a/src/KeyVault/KeyVault/Az.KeyVault.psd1 +++ b/src/KeyVault/KeyVault/Az.KeyVault.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', diff --git a/src/KubernetesConfiguration/Az.KubernetesConfiguration.psd1 b/src/KubernetesConfiguration/Az.KubernetesConfiguration.psd1 index 5582aea1a8ab..923c51f8aa71 100644 --- a/src/KubernetesConfiguration/Az.KubernetesConfiguration.psd1 +++ b/src/KubernetesConfiguration/Az.KubernetesConfiguration.psd1 @@ -10,7 +10,7 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' RequiredAssemblies = './bin/Az.KubernetesConfiguration.private.dll' - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) FormatsToProcess = './Az.KubernetesConfiguration.format.ps1xml' FunctionsToExport = 'Get-AzKubernetesConfiguration', 'New-AzKubernetesConfiguration', 'Remove-AzKubernetesConfiguration' AliasesToExport = '*' diff --git a/src/Kusto/Az.Kusto.psd1 b/src/Kusto/Az.Kusto.psd1 index 6ccadb4df847..be288302833e 100644 --- a/src/Kusto/Az.Kusto.psd1 +++ b/src/Kusto/Az.Kusto.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.Kusto.private.dll' diff --git a/src/LogicApp/LogicApp/Az.LogicApp.psd1 b/src/LogicApp/LogicApp/Az.LogicApp.psd1 index 0470621ae36c..816b3f494b1f 100644 --- a/src/LogicApp/LogicApp/Az.LogicApp.psd1 +++ b/src/LogicApp/LogicApp/Az.LogicApp.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Logic.dll' diff --git a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 index 58b368edd611..ca5031b4b89a 100644 --- a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 +++ b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.MachineLearning.dll' diff --git a/src/Maintenance/Maintenance/Az.Maintenance.psd1 b/src/Maintenance/Maintenance/Az.Maintenance.psd1 index a145a7922587..32fbf0634e94 100644 --- a/src/Maintenance/Maintenance/Az.Maintenance.psd1 +++ b/src/Maintenance/Maintenance/Az.Maintenance.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Maintenance.dll' diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 index 96c3b4e7ba0f..b2e7914cf333 100644 --- a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 +++ b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServiceIdentity.dll' diff --git a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 index aeb4e3acb01f..9d654c6a296a 100644 --- a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 +++ b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServices.dll' diff --git a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 index 20b8269eef52..53adedc75c11 100644 --- a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 +++ b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ManagementPartner.dll' diff --git a/src/Maps/Maps/Az.Maps.psd1 b/src/Maps/Maps/Az.Maps.psd1 index bc552a2677fa..4cfa127dc519 100644 --- a/src/Maps/Maps/Az.Maps.psd1 +++ b/src/Maps/Maps/Az.Maps.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Maps.dll' diff --git a/src/MariaDb/Az.MariaDb.psd1 b/src/MariaDb/Az.MariaDb.psd1 index 9f26421c5c86..db421dc127ba 100644 --- a/src/MariaDb/Az.MariaDb.psd1 +++ b/src/MariaDb/Az.MariaDb.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.MariaDb.private.dll' diff --git a/src/Marketplace/Marketplace/Az.Marketplace.psd1 b/src/Marketplace/Marketplace/Az.Marketplace.psd1 index f8ecaf9af407..cbbafcbb5d26 100644 --- a/src/Marketplace/Marketplace/Az.Marketplace.psd1 +++ b/src/Marketplace/Marketplace/Az.Marketplace.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Marketplace.dll' diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 index eee4a2ea2ce9..ee78aa84ed99 100644 --- a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 +++ b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.MarketplaceOrdering.dll' diff --git a/src/Media/Media/Az.Media.psd1 b/src/Media/Media/Az.Media.psd1 index 5363f7453084..bb570dbdecfc 100644 --- a/src/Media/Media/Az.Media.psd1 +++ b/src/Media/Media/Az.Media.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Media.dll' diff --git a/src/Migrate/Az.Migrate.psd1 b/src/Migrate/Az.Migrate.psd1 index 68296b5ea54d..4e4eafaabd74 100644 --- a/src/Migrate/Az.Migrate.psd1 +++ b/src/Migrate/Az.Migrate.psd1 @@ -52,7 +52,7 @@ # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.Migrate.private.dll' diff --git a/src/MixedReality/MixedReality/Az.MixedReality.psd1 b/src/MixedReality/MixedReality/Az.MixedReality.psd1 index 457fcc687f3d..7cbe4897406c 100644 --- a/src/MixedReality/MixedReality/Az.MixedReality.psd1 +++ b/src/MixedReality/MixedReality/Az.MixedReality.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.MixedReality.dll' diff --git a/src/Monitor/Monitor/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1 index 9af9d3556172..41f0bb767979 100644 --- a/src/Monitor/Monitor/Az.Monitor.psd1 +++ b/src/Monitor/Monitor/Az.Monitor.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Monitor.dll', 'AutoMapper.dll' diff --git a/src/MonitoringSolutions/Az.MonitoringSolutions.psd1 b/src/MonitoringSolutions/Az.MonitoringSolutions.psd1 index e276b0b37059..72dd93417165 100644 --- a/src/MonitoringSolutions/Az.MonitoringSolutions.psd1 +++ b/src/MonitoringSolutions/Az.MonitoringSolutions.psd1 @@ -10,7 +10,7 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' RequiredAssemblies = './bin/Az.MonitoringSolutions.private.dll' - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) FormatsToProcess = './Az.MonitoringSolutions.format.ps1xml' FunctionsToExport = 'Get-AzMonitorLogAnalyticsSolution', 'New-AzMonitorLogAnalyticsSolution', 'Remove-AzMonitorLogAnalyticsSolution', 'Update-AzMonitorLogAnalyticsSolution' AliasesToExport = '*' diff --git a/src/MySql/Az.MySql.psd1 b/src/MySql/Az.MySql.psd1 index 379c9da06ae7..6d64f11f13e2 100644 --- a/src/MySql/Az.MySql.psd1 +++ b/src/MySql/Az.MySql.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.MySql.private.dll' diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 0e9ebfe47a9d..5855f056cff8 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.NetApp.dll' diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index cf4eb19bbcba..a66db26c3443 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Network.dll' diff --git a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 index d29856b26574..933368ff3fd0 100644 --- a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 +++ b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.NotificationHubs.dll' diff --git a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 index a8bf6a98c0bc..6218316e325c 100644 --- a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 +++ b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.OperationalInsights.dll', diff --git a/src/Peering/Peering/Az.Peering.psd1 b/src/Peering/Peering/Az.Peering.psd1 index 575c9ad9a456..e85e19309a5c 100644 --- a/src/Peering/Peering/Az.Peering.psd1 +++ b/src/Peering/Peering/Az.Peering.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Peering.dll', 'AutoMapper.dll' diff --git a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 index 13e6d4492c8e..45fd4c9d7bde 100644 --- a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 +++ b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.PolicyInsights.dll' diff --git a/src/Portal/Az.Portal.psd1 b/src/Portal/Az.Portal.psd1 index f9f66e35bf27..733596a33707 100644 --- a/src/Portal/Az.Portal.psd1 +++ b/src/Portal/Az.Portal.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.Portal.private.dll' diff --git a/src/PostgreSql/Az.PostgreSql.psd1 b/src/PostgreSql/Az.PostgreSql.psd1 index e4570405f7d7..dddfb5ddfcc0 100644 --- a/src/PostgreSql/Az.PostgreSql.psd1 +++ b/src/PostgreSql/Az.PostgreSql.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.PostgreSql.private.dll' diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 index 932a7a987b65..41878d709fe3 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 +++ b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.PowerBIEmbedded.dll', diff --git a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 index 3207652359c5..bcc703f5279e 100644 --- a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 +++ b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.PrivateDns.dll' diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index 4463babbb678..801df50f5f38 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1 index 6bd7a8a93e16..0327f4c28ceb 100644 --- a/src/RedisCache/RedisCache/Az.RedisCache.psd1 +++ b/src/RedisCache/RedisCache/Az.RedisCache.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Insights.dll', diff --git a/src/Relay/Relay/Az.Relay.psd1 b/src/Relay/Relay/Az.Relay.psd1 index ebd3a8c3e232..33e4b1054898 100644 --- a/src/Relay/Relay/Az.Relay.psd1 +++ b/src/Relay/Relay/Az.Relay.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Relay.dll' diff --git a/src/Reservations/Reservations/Az.Reservations.psd1 b/src/Reservations/Reservations/Az.Reservations.psd1 index 61eb768743ff..a820cb96ac51 100644 --- a/src/Reservations/Reservations/Az.Reservations.psd1 +++ b/src/Reservations/Reservations/Az.Reservations.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Reservations.dll' diff --git a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 index e90ec7be9b0f..d20783750307 100644 --- a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 +++ b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ResourceGraph.dll' diff --git a/src/ResourceMover/Az.ResourceMover.psd1 b/src/ResourceMover/Az.ResourceMover.psd1 index 800786211ef5..73c29873dea2 100644 --- a/src/ResourceMover/Az.ResourceMover.psd1 +++ b/src/ResourceMover/Az.ResourceMover.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.ResourceMover.private.dll' diff --git a/src/Resources/Resources/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1 index 188e024c44cf..45fd849a9c77 100644 --- a/src/Resources/Resources/Az.Resources.psd1 +++ b/src/Resources/Resources/Az.Resources.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Authorization.dll', diff --git a/src/Search/Search/Az.Search.psd1 b/src/Search/Search/Az.Search.psd1 index 5fde692d1b7c..e8a8f23f2756 100644 --- a/src/Search/Search/Az.Search.psd1 +++ b/src/Search/Search/Az.Search.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Search.dll' diff --git a/src/Security/Security/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1 index 1ba8a989a4e6..6ac818ebfd92 100644 --- a/src/Security/Security/Az.Security.psd1 +++ b/src/Security/Security/Az.Security.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.SecurityCenter.dll' diff --git a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 index 19d9ebdf1475..628a2dcf696a 100644 --- a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 +++ b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ServiceBus.dll' diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index cbea894155e8..4ff6413614fc 100644 --- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 +++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', diff --git a/src/SignalR/SignalR/Az.SignalR.psd1 b/src/SignalR/SignalR/Az.SignalR.psd1 index 8961fafe9375..4b920f5e35d5 100644 --- a/src/SignalR/SignalR/Az.SignalR.psd1 +++ b/src/SignalR/SignalR/Az.SignalR.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.SignalR.dll' diff --git a/src/SpringCloud/Az.SpringCloud.psd1 b/src/SpringCloud/Az.SpringCloud.psd1 index 33d5c5c7fd0f..2a3fbd7f0a68 100644 --- a/src/SpringCloud/Az.SpringCloud.psd1 +++ b/src/SpringCloud/Az.SpringCloud.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.SpringCloud.private.dll' diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 2ae7529bcee4..76fec2382520 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 index a6b44b9f2de6..74cd6abad00a 100644 --- a/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.SqlVirtualMachine.dll' diff --git a/src/StackEdge/StackEdge/Az.StackEdge.psd1 b/src/StackEdge/StackEdge/Az.StackEdge.psd1 index ed58dbe13691..e0b0649fc1e7 100644 --- a/src/StackEdge/StackEdge/Az.StackEdge.psd1 +++ b/src/StackEdge/StackEdge/Az.StackEdge.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataBoxEdge.dll' diff --git a/src/StackHCI/Az.StackHCI.psd1 b/src/StackHCI/Az.StackHCI.psd1 index 78bfd03795ac..bcbb6145ca9a 100644 --- a/src/StackHCI/Az.StackHCI.psd1 +++ b/src/StackHCI/Az.StackHCI.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index bef39b51f1d7..087fb58e47d7 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Storage.dll', diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1 index 732bdf5b98af..e7eef688c259 100644 --- a/src/StorageSync/StorageSync/Az.StorageSync.psd1 +++ b/src/StorageSync/StorageSync/Az.StorageSync.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.StorageSync.dll', diff --git a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 index aec9b89fa1de..7f6c7cb5f1cc 100644 --- a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 +++ b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.StreamAnalytics.dll' diff --git a/src/Subscription/Subscription/Az.Subscription.psd1 b/src/Subscription/Subscription/Az.Subscription.psd1 index a11e983dc691..4239a5fb1bee 100644 --- a/src/Subscription/Subscription/Az.Subscription.psd1 +++ b/src/Subscription/Subscription/Az.Subscription.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Subscription.dll' diff --git a/src/Support/Support/Az.Support.psd1 b/src/Support/Support/Az.Support.psd1 index 74d818678721..ae12afc97ea3 100644 --- a/src/Support/Support/Az.Support.psd1 +++ b/src/Support/Support/Az.Support.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Support.dll' diff --git a/src/Synapse/Synapse/Az.Synapse.psd1 b/src/Synapse/Synapse/Az.Synapse.psd1 index 25f923cd6964..6a0ac30b1a11 100644 --- a/src/Synapse/Synapse/Az.Synapse.psd1 +++ b/src/Synapse/Synapse/Az.Synapse.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Synapse.dll', diff --git a/src/TimeSeriesInsights/Az.TimeSeriesInsights.psd1 b/src/TimeSeriesInsights/Az.TimeSeriesInsights.psd1 index 88e5c31cc844..ca74d0737c6f 100644 --- a/src/TimeSeriesInsights/Az.TimeSeriesInsights.psd1 +++ b/src/TimeSeriesInsights/Az.TimeSeriesInsights.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.TimeSeriesInsights.private.dll' diff --git a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 index 21335c5b06aa..87c51aed5ed7 100644 --- a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 +++ b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.TrafficManager.dll' diff --git a/src/VMWare/Az.VMWare.psd1 b/src/VMWare/Az.VMWare.psd1 index 17f64ab1ebf9..2c991a95efaa 100644 --- a/src/VMWare/Az.VMWare.psd1 +++ b/src/VMWare/Az.VMWare.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.VMWare.private.dll' diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1 index f11f5d40c01c..74729314434b 100644 --- a/src/Websites/Websites/Az.Websites.psd1 +++ b/src/Websites/Websites/Az.Websites.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll' diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index 9519b28f3dfe..5afbbbe4b4e4 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.1.0'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.1.2'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '2.0.0'; }, @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.4'; }, diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json index b6569fce9097..88865d73f5f3 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common", "Name": "Microsoft.Azure.Commands.Common.VTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProfileName": "System.String" }, @@ -530,7 +530,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -770,7 +770,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1147,7 +1147,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1500,7 +1500,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1901,7 +1901,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2258,7 +2258,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2707,7 +2707,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3159,7 +3159,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3639,7 +3639,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3808,7 +3808,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4012,7 +4012,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4250,7 +4250,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4488,7 +4488,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4665,7 +4665,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4818,7 +4818,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5710,7 +5710,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6212,7 +6212,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6389,7 +6389,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6542,7 +6542,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8069,7 +8069,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8371,7 +8371,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8682,7 +8682,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9008,7 +9008,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9290,7 +9290,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9545,7 +9545,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9773,7 +9773,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10866,7 +10866,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11733,7 +11733,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12256,7 +12256,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12457,7 +12457,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12610,7 +12610,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13132,7 +13132,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13298,7 +13298,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14135,7 +14135,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14547,7 +14547,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15425,7 +15425,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15948,7 +15948,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17098,7 +17098,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Int32", "Headers": "System.Net.Http.Headers.HttpResponseHeaders", @@ -17928,7 +17928,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorCategory": "System.Management.Automation.ErrorCategoryInfo", "ErrorDetails": "System.Management.Automation.ErrorDetails", @@ -17985,7 +17985,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InnerException": "System.Boolean", "Exception": "System.Exception", @@ -18055,7 +18055,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", "ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", @@ -18488,7 +18488,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18702,7 +18702,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18903,7 +18903,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19063,7 +19063,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -19296,7 +19296,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -19389,7 +19389,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19579,7 +19579,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19756,7 +19756,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20462,7 +20462,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20604,7 +20604,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20822,7 +20822,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20964,7 +20964,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21182,7 +21182,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21324,7 +21324,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21539,7 +21539,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21729,7 +21729,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22084,7 +22084,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22359,7 +22359,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22560,7 +22560,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22915,7 +22915,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23190,7 +23190,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23391,7 +23391,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23710,7 +23710,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23937,7 +23937,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24090,7 +24090,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25281,7 +25281,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "Verb": "System.String", @@ -25378,7 +25378,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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "ResponseStatusCode": "System.String",