From 33ca745fd73d98fcaae9b7fe7d87145bd6f1f846 Mon Sep 17 00:00:00 2001 From: Nori Zhang <“norizhang@microsoft.com”> Date: Fri, 9 Sep 2022 09:58:34 +0800 Subject: [PATCH 1/3] Fix the same subscription ids should not be returned in GetSubscriptionListByName issue. --- .../Accounts.Test/AzureRMProfileTests.cs | 25 ++++++++++++++++- .../Mocks/MockSubscriptionClientFactory.cs | 4 +++ .../Accounts/Models/RMProfileClient.cs | 27 ++++++++++++++++--- 3 files changed, 51 insertions(+), 5 deletions(-) diff --git a/src/Accounts/Accounts.Test/AzureRMProfileTests.cs b/src/Accounts/Accounts.Test/AzureRMProfileTests.cs index d47c9551eed7..66afd5b7de31 100644 --- a/src/Accounts/Accounts.Test/AzureRMProfileTests.cs +++ b/src/Accounts/Accounts.Test/AzureRMProfileTests.cs @@ -500,7 +500,7 @@ public void SingleTenantSubscriptionListSucceed() [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void GetSubscriptionListByNameCorrect() + public void GetSubscriptionListByNameSameIdCorrect() { var tenants = new List { DefaultTenant.ToString() }; var firstList = new List { DefaultSubscription.ToString() }; @@ -514,6 +514,29 @@ public void GetSubscriptionListByNameCorrect() client.TryGetSubscriptionListByName(DefaultTenant.ToString(), MockSubscriptionClientFactory.GetSubscriptionNameFromId(DefaultSubscription.ToString()), out subValueList); + Assert.Single(subValueList); + } + + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetSubscriptionListByNameCorrect() + { + var subId1 = "a11a11aa-aaaa-aaaa-aaaa-aaaa1111aaaa"; + var subId2 = "aaaa11aa-aaaa-aaaa-aaaa-aaaa1111aaaa"; + + var tenants = new List { DefaultTenant.ToString() }; + var firstList = new List { subId1 }; + var secondList = new List { subId2 }; + var thirdList = firstList; + var fourthList = firstList; + var client = SetupTestEnvironment(tenants, firstList, secondList, thirdList, fourthList); + var tenantResults = client.ListTenants(); + Assert.Single(tenantResults); + IEnumerable subValueList; + client.TryGetSubscriptionListByName(DefaultTenant.ToString(), + "SameNameForGetSubscriptionByName", + out subValueList); Assert.Equal(2, subValueList.Count()); } diff --git a/src/Accounts/Accounts.Test/Mocks/MockSubscriptionClientFactory.cs b/src/Accounts/Accounts.Test/Mocks/MockSubscriptionClientFactory.cs index ff87519ed830..f0315d64a2f4 100644 --- a/src/Accounts/Accounts.Test/Mocks/MockSubscriptionClientFactory.cs +++ b/src/Accounts/Accounts.Test/Mocks/MockSubscriptionClientFactory.cs @@ -54,6 +54,10 @@ public MockSubscriptionClientFactory() public static string GetSubscriptionNameFromId(string id) { + if(id == "a11a11aa-aaaa-aaaa-aaaa-aaaa1111aaaa" || id == "aaaa11aa-aaaa-aaaa-aaaa-aaaa1111aaaa") + { + return "SameNameForGetSubscriptionByName"; + } return "Sub-" + id; } diff --git a/src/Accounts/Accounts/Models/RMProfileClient.cs b/src/Accounts/Accounts/Models/RMProfileClient.cs index 33ff4f3cf529..6a21435286e5 100644 --- a/src/Accounts/Accounts/Models/RMProfileClient.cs +++ b/src/Accounts/Accounts/Models/RMProfileClient.cs @@ -421,11 +421,30 @@ public bool TryGetSubscriptionByName(string tenantId, string subscriptionName, o return subscription != null; } - public bool TryGetSubscriptionListByName(string tenantId, string subscriptionName, out IEnumerable subscriptionList) + public bool TryGetSubscriptionListByName(string tenantId, string subscriptionName, out IEnumerable subscriptions) { - subscriptionList = ListSubscriptions(tenantId); - subscriptionList = subscriptionList.Where(s => s.Name.Equals(subscriptionName, StringComparison.OrdinalIgnoreCase)); - return subscriptionList.Any(); + subscriptions = ListSubscriptions(tenantId).Where(s => s.Name.Equals(subscriptionName, StringComparison.OrdinalIgnoreCase)); + List subscriptionList = new List(); + HashSet subscriptionIds = new HashSet(); + foreach(IAzureSubscription subscription in subscriptions) + { + + if(subscription is PSAzureSubscription && subscription.GetTenant() != null + && subscription.GetHomeTenant().Equals(subscription.GetTenant()) && subscriptionIds.Add(subscription.GetId())) + { + subscriptionList.Add(subscription); + } + + } + foreach (IAzureSubscription subscription in subscriptions) + { + if (subscriptionIds.Add(subscription.GetId())) + { + subscriptionList.Add(subscription); + } + } + subscriptions = subscriptionList; + return subscriptions.Any(); } private IAzureSubscription GetFirstSubscription(string tenantId) From 9852f512a8aef0d4f3c5dd806c07652a95f2af10 Mon Sep 17 00:00:00 2001 From: Nori Zhang <“norizhang@microsoft.com”> Date: Fri, 9 Sep 2022 11:23:18 +0800 Subject: [PATCH 2/3] ChangLog update. --- src/Accounts/Accounts/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 8679528456fe..48c0aaa91714 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release - +* Fixed returning duplicate Ids for one subscription while using `Get-AzSubscription` with parameter `SubscriptionName`. [#19427] ## Version 2.10.0 * Supported returning all subscriptions with specified name while using `Get-AzSubscription` with parameter `SubscriptionName`. [#19295] * Fixed null reference exception when cmdlet uses AzureRestOperation [#18104] From 4cf99f4b8cc1cd5b9da0035e919e01f6f8d5d972 Mon Sep 17 00:00:00 2001 From: Nori Zhang <“norizhang@microsoft.com”> Date: Fri, 9 Sep 2022 14:46:23 +0800 Subject: [PATCH 3/3] Bump version. --- src/Accounts/Accounts/Az.Accounts.psd1 | 8 +- src/Accounts/Accounts/ChangeLog.md | 3 + .../Accounts/Properties/AssemblyInfo.cs | 4 +- .../Accounts/Utilities/CommandMappings.json | 80 +++++++-- .../Authentication/Properties/AssemblyInfo.cs | 4 +- .../Authenticators/Properties/AssemblyInfo.cs | 4 +- tools/Az/Az.psd1 | 2 +- tools/AzPreview/AzPreview.psd1 | 4 +- tools/Docs/az-ps-latest.csv | 4 +- .../SerializedCmdlets/Az.Accounts.json | 162 +++++++++--------- 10 files changed, 161 insertions(+), 114 deletions(-) diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index 5444e7fc99f2..c18c4197f9f1 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: 2022/9/2 +# Generated on: 9/9/2022 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.10.0' +ModuleVersion = '2.10.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -146,9 +146,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Supported returning all subscriptions with specified name while using ''Get-AzSubscription'' with parameter ''SubscriptionName''. [#19295] -* Fixed null reference exception when cmdlet uses AzureRestOperation [#18104] -* Updated survey message and settings' + ReleaseNotes = '* Fixed returning duplicate Ids for one subscription while using ''Get-AzSubscription'' with parameter ''SubscriptionName''. [#19427]' # Prerelease string of this module # Prerelease = '' diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 48c0aaa91714..37f6d32504a4 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -19,7 +19,10 @@ --> ## Upcoming Release + +## Version 2.10.1 * Fixed returning duplicate Ids for one subscription while using `Get-AzSubscription` with parameter `SubscriptionName`. [#19427] + ## Version 2.10.0 * Supported returning all subscriptions with specified name while using `Get-AzSubscription` with parameter `SubscriptionName`. [#19295] * Fixed null reference exception when cmdlet uses AzureRestOperation [#18104] diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs index 085f2dbe42df..d1ae6f68bed3 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.10.0")] -[assembly: AssemblyFileVersion("2.10.0")] +[assembly: AssemblyVersion("2.10.1")] +[assembly: AssemblyFileVersion("2.10.1")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")] #endif diff --git a/src/Accounts/Accounts/Utilities/CommandMappings.json b/src/Accounts/Accounts/Utilities/CommandMappings.json index 491c260d0656..366ad4f60b2a 100644 --- a/src/Accounts/Accounts/Utilities/CommandMappings.json +++ b/src/Accounts/Accounts/Utilities/CommandMappings.json @@ -362,6 +362,14 @@ "Remove-AzAttestationPolicySigner": {} }, "Az.Automation": { + "Move-AzAutomationHybridRunbookWorker": {}, + "Remove-AzAutomationHybridRunbookWorker": {}, + "New-AzAutomationHybridRunbookWorker": {}, + "Get-AzAutomationHybridRunbookWorker": {}, + "Remove-AzAutomationHybridRunbookWorkerGroup": {}, + "Set-AzAutomationHybridRunbookWorkerGroup": {}, + "New-AzAutomationHybridRunbookWorkerGroup": {}, + "Get-AzAutomationHybridRunbookWorkerGroup": {}, "Get-AzAutomationHybridWorkerGroup": {}, "Remove-AzAutomationHybridWorkerGroup": {}, "Get-AzAutomationJobOutputRecord": {}, @@ -5104,30 +5112,68 @@ "Set-AzSecurityAutomation": {} }, "Az.SecurityInsights": { - "Get-AzSentinelAlertRuleAction": {}, - "New-AzSentinelAlertRuleAction": {}, - "Remove-AzSentinelAlertRuleAction": {}, - "Update-AzSentinelAlertRuleAction": {}, "Get-AzSentinelAlertRule": {}, - "New-AzSentinelAlertRule": {}, - "Remove-AzSentinelAlertRule": {}, - "Update-AzSentinelAlertRule": {}, + "Get-AzSentinelAlertRuleAction": {}, "Get-AzSentinelAlertRuleTemplate": {}, + "Get-AzSentinelAutomationRule": {}, "Get-AzSentinelBookmark": {}, - "New-AzSentinelBookmark": {}, - "Remove-AzSentinelBookmark": {}, - "Update-AzSentinelBookmark": {}, + "Get-AzSentinelBookmarkRelation": {}, "Get-AzSentinelDataConnector": {}, - "New-AzSentinelDataConnector": {}, - "Remove-AzSentinelDataConnector": {}, - "Update-AzSentinelDataConnector": {}, - "Get-AzSentinelIncidentComment": {}, - "New-AzSentinelIncidentComment": {}, + "Get-AzSentinelEnrichment": {}, + "Get-AzSentinelEntity": {}, + "Get-AzSentinelEntityActivity": {}, + "Get-AzSentinelEntityInsight": {}, + "Get-AzSentinelEntityQuery": {}, + "Get-AzSentinelEntityQueryTemplate": {}, + "Get-AzSentinelEntityRelation": {}, + "Get-AzSentinelEntityTimeline": {}, "Get-AzSentinelIncident": {}, + "Get-AzSentinelIncidentAlert": {}, + "Get-AzSentinelIncidentBookmark": {}, + "Get-AzSentinelIncidentComment": {}, + "Get-AzSentinelIncidentEntity": {}, + "Get-AzSentinelIncidentRelation": {}, + "Get-AzSentinelMetadata": {}, + "Get-AzSentinelOnboardingState": {}, + "Get-AzSentinelSetting": {}, + "Get-AzSentinelThreatIntelligenceIndicator": {}, + "Get-AzSentinelThreatIntelligenceIndicatorMetric": {}, + "Invoke-AzSentinelThreatIntelligenceIndicatorQuery": {}, + "New-AzSentinelAlertRule": {}, + "New-AzSentinelAlertRuleAction": {}, + "New-AzSentinelAutomationRule": {}, + "New-AzSentinelBookmark": {}, + "New-AzSentinelBookmarkRelation": {}, + "New-AzSentinelDataConnector": {}, + "New-AzSentinelEntityQuery": {}, "New-AzSentinelIncident": {}, - "New-AzSentinelIncidentOwner": {}, + "New-AzSentinelIncidentComment": {}, + "New-AzSentinelIncidentRelation": {}, + "New-AzSentinelIncidentTeam": {}, + "New-AzSentinelOnboardingState": {}, + "Remove-AzSentinelAlertRule": {}, + "Remove-AzSentinelAlertRuleAction": {}, + "Remove-AzSentinelAutomationRule": {}, + "Remove-AzSentinelBookmark": {}, + "Remove-AzSentinelBookmarkRelation": {}, + "Remove-AzSentinelDataConnector": {}, + "Remove-AzSentinelEntityQuery": {}, "Remove-AzSentinelIncident": {}, - "Update-AzSentinelIncident": {} + "Remove-AzSentinelIncidentComment": {}, + "Remove-AzSentinelIncidentRelation": {}, + "Remove-AzSentinelOnboardingState": {}, + "Test-AzSentinelDataConnectorCheckRequirement": {}, + "Update-AzSentinelAlertRule": {}, + "Update-AzSentinelAlertRuleAction": {}, + "Update-AzSentinelAutomationRule": {}, + "Update-AzSentinelBookmark": {}, + "Update-AzSentinelBookmarkRelation": {}, + "Update-AzSentinelDataConnector": {}, + "Update-AzSentinelEntityQuery": {}, + "Update-AzSentinelIncident": {}, + "Update-AzSentinelIncidentComment": {}, + "Update-AzSentinelIncidentRelation": {}, + "Update-AzSentinelSetting": {} }, "Az.ServiceBus": { "New-AzServiceBusNamespace": {}, diff --git a/src/Accounts/Authentication/Properties/AssemblyInfo.cs b/src/Accounts/Authentication/Properties/AssemblyInfo.cs index 24aa05678217..4e38364cc6d5 100644 --- a/src/Accounts/Authentication/Properties/AssemblyInfo.cs +++ b/src/Accounts/Authentication/Properties/AssemblyInfo.cs @@ -43,8 +43,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.10.0")] -[assembly: AssemblyFileVersion("2.10.0")] +[assembly: AssemblyVersion("2.10.1")] +[assembly: AssemblyFileVersion("2.10.1")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Authentication.Test")] #endif diff --git a/src/Accounts/Authenticators/Properties/AssemblyInfo.cs b/src/Accounts/Authenticators/Properties/AssemblyInfo.cs index 250660cf6e5b..88f9c870a732 100644 --- a/src/Accounts/Authenticators/Properties/AssemblyInfo.cs +++ b/src/Accounts/Authenticators/Properties/AssemblyInfo.cs @@ -48,5 +48,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.10.0")] -[assembly: AssemblyFileVersion("2.10.0")] +[assembly: AssemblyVersion("2.10.1")] +[assembly: AssemblyFileVersion("2.10.1")] diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index c73bd68e188d..381a4cf6c2a8 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.10.0'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.1'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.2'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '4.3.0'; }, @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.4'; }, diff --git a/tools/AzPreview/AzPreview.psd1 b/tools/AzPreview/AzPreview.psd1 index 10d3d44d99fc..4db91ace21c2 100644 --- a/tools/AzPreview/AzPreview.psd1 +++ b/tools/AzPreview/AzPreview.psd1 @@ -52,7 +52,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.0'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.1'; }, @{ModuleName = 'Az.ADDomainServices'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.2'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '4.3.0'; }, @@ -172,7 +172,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.0'; }, @{ModuleName = 'Az.Resources'; RequiredVersion = '6.2.0'; }, @{ModuleName = 'Az.Search'; RequiredVersion = '0.8.0'; }, @{ModuleName = 'Az.Security'; RequiredVersion = '1.3.0'; }, - @{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '2.0.0'; }, @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.11.0'; }, @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '3.1.0'; }, @{ModuleName = 'Az.ServiceLinker'; RequiredVersion = '0.1.0'; }, diff --git a/tools/Docs/az-ps-latest.csv b/tools/Docs/az-ps-latest.csv index 9544c38a8b2a..359193313bda 100644 --- a/tools/Docs/az-ps-latest.csv +++ b/tools/Docs/az-ps-latest.csv @@ -1,4 +1,4 @@ -pac0,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Accounts,2.10.0 +pac0,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Accounts,2.10.1 pac1,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.ADDomainServices,0.2.0 pac2,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Advisor,1.1.2 pac3,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Aks,4.3.0 @@ -118,7 +118,7 @@ pac116,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Resour pac117,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Resources,6.2.0 pac118,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Search,0.8.0 pac119,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Security,1.3.0 -pac120,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.SecurityInsights,1.1.0 +pac120,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.SecurityInsights,2.0.0 pac121,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.ServiceBus,1.11.0 pac122,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.ServiceFabric,3.1.0 pac123,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.ServiceLinker,0.1.0 diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json b/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json index 32113c0acbb8..7789ea876766 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Accounts", - "ModuleVersion": "2.10.0", + "ModuleVersion": "2.10.1", "Cmdlets": [ { "VerbName": "Add", @@ -469,7 +469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1023,7 +1023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1323,7 +1323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1399,7 +1399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1445,7 +1445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1950,7 +1950,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2015,7 +2015,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2108,7 +2108,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2188,7 +2188,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2264,7 +2264,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2607,7 +2607,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2741,7 +2741,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2953,7 +2953,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3150,7 +3150,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3392,7 +3392,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3604,7 +3604,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3843,7 +3843,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4060,7 +4060,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4314,7 +4314,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4530,7 +4530,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4587,7 +4587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication", "Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -4637,7 +4637,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4672,7 +4672,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5125,7 +5125,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5179,7 +5179,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5259,7 +5259,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5330,7 +5330,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5401,7 +5401,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5462,7 +5462,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5508,7 +5508,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5565,7 +5565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication", "Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -5615,7 +5615,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5650,7 +5650,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6092,7 +6092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpiresOn": "System.DateTimeOffset", "Token": "System.String", @@ -6377,7 +6377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Scope": "Microsoft.Azure.PowerShell.Common.Config.ConfigScope", "Value": "System.Object", @@ -6909,7 +6909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication", "Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -6959,7 +6959,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6994,7 +6994,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7047,7 +7047,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -8127,7 +8127,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8192,7 +8192,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8253,7 +8253,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8299,7 +8299,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8352,7 +8352,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Int32", "Headers": "System.Net.Http.Headers.HttpResponseHeaders", @@ -9051,7 +9051,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProfileName": "System.String" }, @@ -9212,7 +9212,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9311,7 +9311,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9387,7 +9387,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9478,7 +9478,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9636,7 +9636,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9686,7 +9686,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9846,7 +9846,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9954,7 +9954,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10045,7 +10045,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10151,7 +10151,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10219,7 +10219,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorCategory": "System.Management.Automation.ErrorCategoryInfo", "ErrorDetails": "System.Management.Automation.ErrorDetails", @@ -10270,7 +10270,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InnerException": "System.Boolean", "Exception": "System.Exception", @@ -10334,7 +10334,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", "ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", @@ -10899,7 +10899,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10968,7 +10968,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11014,7 +11014,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11075,7 +11075,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11397,7 +11397,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11506,7 +11506,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11629,7 +11629,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11754,7 +11754,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11887,7 +11887,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12001,7 +12001,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12096,7 +12096,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12152,7 +12152,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -12219,7 +12219,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12284,7 +12284,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12345,7 +12345,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12833,7 +12833,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13041,7 +13041,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13606,7 +13606,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13906,7 +13906,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14060,7 +14060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Scope": "Microsoft.Azure.PowerShell.Common.Config.ConfigScope", "Value": "System.Object", @@ -14889,7 +14889,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "Verb": "System.String", @@ -14966,7 +14966,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.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "ResponseStatusCode": "System.String",