From e652f49f4fcb7a8432564c9f8973e20667299545 Mon Sep 17 00:00:00 2001 From: Qi Pan <43341456+Pan-Qi@users.noreply.github.com> Date: Thu, 6 Mar 2025 19:13:35 +1100 Subject: [PATCH 1/7] migrate Portal module to autorest v4 --- .../Properties/AssemblyInfo.cs | 26 ++++++ src/Portal/Portal.Autorest/README.md | 7 +- .../custom/New-AzPortalDashboard.ps1 | 4 +- .../custom/Set-AzPortalDashboard.ps1 | 4 +- src/Portal/Portal.Autorest/docs/Az.Portal.md | 6 +- .../docs/Get-AzPortalDashboard.md | 3 +- .../docs/New-AzPortalDashboard.md | 56 ++++++++++-- .../docs/Remove-AzPortalDashboard.md | 1 - .../docs/Set-AzPortalDashboard.md | 2 +- .../docs/Update-AzPortalDashboard.md | 64 +++++++++++--- src/Portal/Portal.Autorest/generate-info.json | 2 +- .../Portal.Autorest/resources/README.md | 11 +++ src/Portal/Portal.sln | 12 +-- src/Portal/Portal/Az.Portal.psd1 | 10 +-- src/Portal/Portal/help/Az.Portal.md | 4 +- .../Portal/help/Get-AzPortalDashboard.md | 26 ++++-- .../Portal/help/New-AzPortalDashboard.md | 79 ++++++++++++++--- .../Portal/help/Remove-AzPortalDashboard.md | 20 ++++- .../Portal/help/Set-AzPortalDashboard.md | 19 ++++- .../Portal/help/Update-AzPortalDashboard.md | 85 ++++++++++++++++--- 20 files changed, 357 insertions(+), 84 deletions(-) create mode 100644 src/Portal/Portal.Autorest/Properties/AssemblyInfo.cs create mode 100644 src/Portal/Portal.Autorest/resources/README.md diff --git a/src/Portal/Portal.Autorest/Properties/AssemblyInfo.cs b/src/Portal/Portal.Autorest/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..41117eda57d0 --- /dev/null +++ b/src/Portal/Portal.Autorest/Properties/AssemblyInfo.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the ""License""); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an ""AS IS"" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +// is regenerated. + +using System; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")] +[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")] +[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Portal")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("0.3.0")] +[assembly: System.Reflection.AssemblyVersionAttribute("0.3.0")] +[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] +[assembly: System.CLSCompliantAttribute(false)] diff --git a/src/Portal/Portal.Autorest/README.md b/src/Portal/Portal.Autorest/README.md index deb0807a10dc..25eba96bfa99 100644 --- a/src/Portal/Portal.Autorest/README.md +++ b/src/Portal/Portal.Autorest/README.md @@ -54,9 +54,10 @@ module-version: 0.1.0 title: Portal subject-prefix: $(service-name) -# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option -use-extension: - "@autorest/powershell": "3.x" +# resourcegroup-append: false +# identity-correction-for-post: false +# export-properties-for-dict: false +# nested-object-to-string: false directive: - where: diff --git a/src/Portal/Portal.Autorest/custom/New-AzPortalDashboard.ps1 b/src/Portal/Portal.Autorest/custom/New-AzPortalDashboard.ps1 index bb6435c13a93..4cad31a3a0de 100644 --- a/src/Portal/Portal.Autorest/custom/New-AzPortalDashboard.ps1 +++ b/src/Portal/Portal.Autorest/custom/New-AzPortalDashboard.ps1 @@ -15,7 +15,7 @@ function New-AzPortalDashboard { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard])] [CmdletBinding(SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateByFile', Mandatory)] @@ -112,7 +112,7 @@ begin { if (Test-Path $dashboardPath) { $content = (Get-content -Path $dashboardPath) - $deserializedContent = [Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.Dashboard]::FromJsonString($content) + $deserializedContent = [Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Dashboard]::FromJsonString($content) $PSBoundParameters.Remove('DashboardPath') | Out-Null $PSBoundParameters.Add('Resource', $deserializedContent) | Out-Null $scriptCmd = {& $wrappedCmd @PSBoundParameters} diff --git a/src/Portal/Portal.Autorest/custom/Set-AzPortalDashboard.ps1 b/src/Portal/Portal.Autorest/custom/Set-AzPortalDashboard.ps1 index e18d76f2ed13..09e878a2d79b 100644 --- a/src/Portal/Portal.Autorest/custom/Set-AzPortalDashboard.ps1 +++ b/src/Portal/Portal.Autorest/custom/Set-AzPortalDashboard.ps1 @@ -15,7 +15,7 @@ function Set-AzPortalDashboard { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard])] [CmdletBinding(SupportsShouldProcess, PositionalBinding=$false, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Portal.Description("Creates or updates a Dashboard.")] param( @@ -112,7 +112,7 @@ begin { if (Test-Path $dashboardPath) { $content = (Get-content -Path $dashboardPath) - $deserializedContent = [Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.Dashboard]::FromJsonString($content) + $deserializedContent = [Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Dashboard]::FromJsonString($content) $PSBoundParameters.Remove('DashboardPath') | Out-Null $PSBoundParameters.Add('Resource', $deserializedContent) | Out-Null $scriptCmd = {& $wrappedCmd @PSBoundParameters} diff --git a/src/Portal/Portal.Autorest/docs/Az.Portal.md b/src/Portal/Portal.Autorest/docs/Az.Portal.md index 8cab6456477e..5115620ce3ff 100644 --- a/src/Portal/Portal.Autorest/docs/Az.Portal.md +++ b/src/Portal/Portal.Autorest/docs/Az.Portal.md @@ -1,6 +1,6 @@ --- Module Name: Az.Portal -Module Guid: abd8c13e-6209-4e5a-a276-61e7a80845f9 +Module Guid: 0d19ca5d-46f3-4805-bde3-e14ee0aab1b8 Download Help Link: https://learn.microsoft.com/powershell/module/az.portal Help Version: 1.0.0.0 Locale: en-US @@ -15,7 +15,7 @@ Microsoft Azure PowerShell: Portal Dashboard cmdlets Gets the Dashboard. ### [New-AzPortalDashboard](New-AzPortalDashboard.md) -Creates or updates a Dashboard. +create a Dashboard. ### [Remove-AzPortalDashboard](Remove-AzPortalDashboard.md) Deletes the Dashboard. @@ -24,5 +24,5 @@ Deletes the Dashboard. Creates or updates a Dashboard. ### [Update-AzPortalDashboard](Update-AzPortalDashboard.md) -Updates an existing Dashboard. +update an existing Dashboard. diff --git a/src/Portal/Portal.Autorest/docs/Get-AzPortalDashboard.md b/src/Portal/Portal.Autorest/docs/Get-AzPortalDashboard.md index 6b4bde65e239..7a8f924dd6a9 100644 --- a/src/Portal/Portal.Autorest/docs/Get-AzPortalDashboard.md +++ b/src/Portal/Portal.Autorest/docs/Get-AzPortalDashboard.md @@ -86,7 +86,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity @@ -156,7 +155,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## NOTES diff --git a/src/Portal/Portal.Autorest/docs/New-AzPortalDashboard.md b/src/Portal/Portal.Autorest/docs/New-AzPortalDashboard.md index 85fd1408d3c7..2813a225a8e3 100644 --- a/src/Portal/Portal.Autorest/docs/New-AzPortalDashboard.md +++ b/src/Portal/Portal.Autorest/docs/New-AzPortalDashboard.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzPortalDashboard ## SYNOPSIS -Creates or updates a Dashboard. +create a Dashboard. ## SYNTAX @@ -31,8 +31,20 @@ New-AzPortalDashboard -Name -ResourceGroupName -DashboardPath [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### CreateViaJsonFilePath +``` +New-AzPortalDashboard -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzPortalDashboard -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Creates or updates a Dashboard. +create a Dashboard. ## EXAMPLES @@ -83,12 +95,41 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Lens The dashboard lenses. -To construct, see NOTES section for LENS properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboardLens[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboardLens[] Parameter Sets: CreateExpanded Aliases: @@ -146,10 +187,9 @@ Accept wildcard characters: False ### -Resource The shared dashboard resource definition. -To construct, see NOTES section for RESOURCE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard Parameter Sets: Create Aliases: @@ -243,11 +283,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## NOTES diff --git a/src/Portal/Portal.Autorest/docs/Remove-AzPortalDashboard.md b/src/Portal/Portal.Autorest/docs/Remove-AzPortalDashboard.md index ad3a8a5309b1..bbe4204a055b 100644 --- a/src/Portal/Portal.Autorest/docs/Remove-AzPortalDashboard.md +++ b/src/Portal/Portal.Autorest/docs/Remove-AzPortalDashboard.md @@ -63,7 +63,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity diff --git a/src/Portal/Portal.Autorest/docs/Set-AzPortalDashboard.md b/src/Portal/Portal.Autorest/docs/Set-AzPortalDashboard.md index 28317d042bb6..8119b857fbca 100644 --- a/src/Portal/Portal.Autorest/docs/Set-AzPortalDashboard.md +++ b/src/Portal/Portal.Autorest/docs/Set-AzPortalDashboard.md @@ -151,7 +151,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## NOTES diff --git a/src/Portal/Portal.Autorest/docs/Update-AzPortalDashboard.md b/src/Portal/Portal.Autorest/docs/Update-AzPortalDashboard.md index 2f125073b4cf..ab72b52de8ad 100644 --- a/src/Portal/Portal.Autorest/docs/Update-AzPortalDashboard.md +++ b/src/Portal/Portal.Autorest/docs/Update-AzPortalDashboard.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzPortalDashboard ## SYNOPSIS -Updates an existing Dashboard. +update an existing Dashboard. ## SYNTAX @@ -25,8 +25,20 @@ Update-AzPortalDashboard -InputObject [-Lens ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### UpdateViaJsonFilePath +``` +Update-AzPortalDashboard -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzPortalDashboard -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Updates an existing Dashboard. +update an existing Dashboard. ## EXAMPLES @@ -78,7 +90,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity @@ -92,13 +103,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Lens The dashboard lenses. -To construct, see NOTES section for LENS properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboardLens[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboardLens[] +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -113,7 +153,7 @@ The dashboard metadata. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -128,7 +168,7 @@ The name of the dashboard. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: DashboardName Required: True @@ -144,7 +184,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -160,7 +200,7 @@ The value must be an UUID. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: False @@ -175,7 +215,7 @@ Resource tags ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -225,7 +265,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## NOTES diff --git a/src/Portal/Portal.Autorest/generate-info.json b/src/Portal/Portal.Autorest/generate-info.json index 176b7564d999..85d964e89302 100644 --- a/src/Portal/Portal.Autorest/generate-info.json +++ b/src/Portal/Portal.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "351efe1a-d585-4289-9408-d9c07e8ef900" + "generate_Id": "01fee761-5819-4cbd-a3a5-8b34ed898958" } diff --git a/src/Portal/Portal.Autorest/resources/README.md b/src/Portal/Portal.Autorest/resources/README.md new file mode 100644 index 000000000000..937f07f8fec2 --- /dev/null +++ b/src/Portal/Portal.Autorest/resources/README.md @@ -0,0 +1,11 @@ +# Resources +This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder. + +## Info +- Modifiable: yes +- Generated: no +- Committed: yes +- Packaged: no + +## Purpose +Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact. \ No newline at end of file diff --git a/src/Portal/Portal.sln b/src/Portal/Portal.sln index ae38bf899cd2..0053a2d33c81 100644 --- a/src/Portal/Portal.sln +++ b/src/Portal/Portal.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 @@ -19,7 +19,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Portal", "Portal\Portal.csproj", "{35102A7D-CDFE-4854-B4D8-21C68EC04172}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{FCE2135E-6FAF-4839-B38A-2101234870AA}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{B2A17B47-DF0E-49D0-8A03-F097900D809B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -58,10 +58,10 @@ Global {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|Any CPU.Build.0 = Debug|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.ActiveCfg = Release|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.Build.0 = Release|Any CPU - {FCE2135E-6FAF-4839-B38A-2101234870AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FCE2135E-6FAF-4839-B38A-2101234870AA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FCE2135E-6FAF-4839-B38A-2101234870AA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FCE2135E-6FAF-4839-B38A-2101234870AA}.Release|Any CPU.Build.0 = Release|Any CPU + {B2A17B47-DF0E-49D0-8A03-F097900D809B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B2A17B47-DF0E-49D0-8A03-F097900D809B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B2A17B47-DF0E-49D0-8A03-F097900D809B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B2A17B47-DF0E-49D0-8A03-F097900D809B}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(NestedProjects) = preSolution {18EAC80C-6DEC-4EBC-A0BB-320B5324264A} = {7913BDC6-0FBA-43BB-AB8D-D809BD22EE94} diff --git a/src/Portal/Portal/Az.Portal.psd1 b/src/Portal/Portal/Az.Portal.psd1 index 1f456ec41512..686c93f3b201 100644 --- a/src/Portal/Portal/Az.Portal.psd1 +++ b/src/Portal/Portal/Az.Portal.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/5/2025 +# Generated on: 3/6/2025 # @{ @@ -57,10 +57,10 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.2'; }) RequiredAssemblies = 'Portal.Autorest/bin/Az.Portal.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -# ScriptsToProcess = @() +ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() +TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'Portal.Autorest/Az.Portal.format.ps1xml' @@ -97,7 +97,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','Portal','Dashboard' + Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'Portal', 'Dashboard' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -122,7 +122,7 @@ PrivateData = @{ } # End of PSData hashtable - } # End of PrivateData hashtable +} # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/Portal/Portal/help/Az.Portal.md b/src/Portal/Portal/help/Az.Portal.md index 8cab6456477e..59c43fc9c442 100644 --- a/src/Portal/Portal/help/Az.Portal.md +++ b/src/Portal/Portal/help/Az.Portal.md @@ -15,7 +15,7 @@ Microsoft Azure PowerShell: Portal Dashboard cmdlets Gets the Dashboard. ### [New-AzPortalDashboard](New-AzPortalDashboard.md) -Creates or updates a Dashboard. +create a Dashboard. ### [Remove-AzPortalDashboard](Remove-AzPortalDashboard.md) Deletes the Dashboard. @@ -24,5 +24,5 @@ Deletes the Dashboard. Creates or updates a Dashboard. ### [Update-AzPortalDashboard](Update-AzPortalDashboard.md) -Updates an existing Dashboard. +update an existing Dashboard. diff --git a/src/Portal/Portal/help/Get-AzPortalDashboard.md b/src/Portal/Portal/help/Get-AzPortalDashboard.md index 178884191dbb..6b73c2ef732c 100644 --- a/src/Portal/Portal/help/Get-AzPortalDashboard.md +++ b/src/Portal/Portal/help/Get-AzPortalDashboard.md @@ -15,25 +15,25 @@ Gets the Dashboard. ### List (Default) ``` Get-AzPortalDashboard [-SubscriptionId ] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### Get ``` Get-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [] + [-DefaultProfile ] [-ProgressAction ] [] ``` ### List1 ``` Get-AzPortalDashboard -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### GetViaIdentity ``` Get-AzPortalDashboard -InputObject [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ## DESCRIPTION @@ -88,7 +88,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity @@ -117,6 +116,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: System.Management.Automation.ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group. The name is case insensitive. @@ -158,7 +172,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## NOTES diff --git a/src/Portal/Portal/help/New-AzPortalDashboard.md b/src/Portal/Portal/help/New-AzPortalDashboard.md index b34e9f9e0b76..13fb91e41d30 100644 --- a/src/Portal/Portal/help/New-AzPortalDashboard.md +++ b/src/Portal/Portal/help/New-AzPortalDashboard.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzPortalDashboard ## SYNOPSIS -Creates or updates a Dashboard. +create a Dashboard. ## SYNTAX @@ -16,25 +16,39 @@ Creates or updates a Dashboard. ``` New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] -Location [-Lens ] [-Metadata ] [-Tag ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### Create ``` New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -Resource [-DefaultProfile ] [-WhatIf] [-Confirm] + -Resource [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonString +``` +New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### CreateByFile ``` New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -DashboardPath [-DefaultProfile ] [-WhatIf] [-Confirm] + -DashboardPath [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -Creates or updates a Dashboard. +create a Dashboard. ## EXAMPLES @@ -85,12 +99,41 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Lens The dashboard lenses. -To construct, see NOTES section for LENS properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboardLens[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboardLens[] Parameter Sets: CreateExpanded Aliases: @@ -146,12 +189,26 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: System.Management.Automation.ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Resource The shared dashboard resource definition. -To construct, see NOTES section for RESOURCE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard Parameter Sets: Create Aliases: @@ -245,11 +302,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## NOTES diff --git a/src/Portal/Portal/help/Remove-AzPortalDashboard.md b/src/Portal/Portal/help/Remove-AzPortalDashboard.md index 313bba96eadb..889f2e0a301b 100644 --- a/src/Portal/Portal/help/Remove-AzPortalDashboard.md +++ b/src/Portal/Portal/help/Remove-AzPortalDashboard.md @@ -15,14 +15,14 @@ Deletes the Dashboard. ### Delete (Default) ``` Remove-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [-DefaultProfile ] [-PassThru] [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### DeleteViaIdentity ``` Remove-AzPortalDashboard -InputObject [-DefaultProfile ] [-PassThru] - [-WhatIf] [-Confirm] [] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -64,7 +64,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity @@ -108,6 +107,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: System.Management.Automation.ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group. The name is case insensitive. diff --git a/src/Portal/Portal/help/Set-AzPortalDashboard.md b/src/Portal/Portal/help/Set-AzPortalDashboard.md index f6337e93aedd..b49a76ffb01a 100644 --- a/src/Portal/Portal/help/Set-AzPortalDashboard.md +++ b/src/Portal/Portal/help/Set-AzPortalDashboard.md @@ -14,7 +14,7 @@ Creates or updates a Dashboard. ``` Set-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -DashboardPath [-DefaultProfile ] [-WhatIf] [-Confirm] + -DashboardPath [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` @@ -82,6 +82,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: System.Management.Automation.ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName ```yaml @@ -148,7 +163,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## NOTES diff --git a/src/Portal/Portal/help/Update-AzPortalDashboard.md b/src/Portal/Portal/help/Update-AzPortalDashboard.md index ce5676c16f6b..1bd3cb57191b 100644 --- a/src/Portal/Portal/help/Update-AzPortalDashboard.md +++ b/src/Portal/Portal/help/Update-AzPortalDashboard.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzPortalDashboard ## SYNOPSIS -Updates an existing Dashboard. +update an existing Dashboard. ## SYNTAX @@ -16,18 +16,32 @@ Updates an existing Dashboard. ``` Update-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] [-Lens ] [-Metadata ] [-Tag ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-ProgressAction ] [-WhatIf] [-Confirm] [] +``` + +### UpdateViaJsonString +``` +Update-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [] ``` ### UpdateViaIdentityExpanded ``` Update-AzPortalDashboard -InputObject [-Lens ] [-Metadata ] - [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-Tag ] [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -Updates an existing Dashboard. +update an existing Dashboard. ## EXAMPLES @@ -79,7 +93,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity @@ -93,13 +106,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Lens The dashboard lenses. -To construct, see NOTES section for LENS properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboardLens[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboardLens[] +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -114,7 +156,7 @@ The dashboard metadata. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -129,7 +171,7 @@ The name of the dashboard. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: DashboardName Required: True @@ -139,13 +181,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: System.Management.Automation.ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group. The name is case insensitive. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: True @@ -161,7 +218,7 @@ The value must be an UUID. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: False @@ -176,7 +233,7 @@ Resource tags ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -226,7 +283,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api20221201Preview.IDashboard +### Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IDashboard ## NOTES From 46b7478b2785c5ef541cb4122c741fdc2fb8444d Mon Sep 17 00:00:00 2001 From: Qi Pan <43341456+Pan-Qi@users.noreply.github.com> Date: Thu, 6 Mar 2025 21:43:08 +1100 Subject: [PATCH 2/7] remove param --- src/Portal/Portal.Autorest/README.md | 5 ----- src/Portal/Portal.Autorest/generate-info.json | 2 +- src/Portal/Portal.sln | 10 +++++----- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/src/Portal/Portal.Autorest/README.md b/src/Portal/Portal.Autorest/README.md index 25eba96bfa99..1e84faee4c72 100644 --- a/src/Portal/Portal.Autorest/README.md +++ b/src/Portal/Portal.Autorest/README.md @@ -54,11 +54,6 @@ module-version: 0.1.0 title: Portal subject-prefix: $(service-name) -# resourcegroup-append: false -# identity-correction-for-post: false -# export-properties-for-dict: false -# nested-object-to-string: false - directive: - where: verb: Set diff --git a/src/Portal/Portal.Autorest/generate-info.json b/src/Portal/Portal.Autorest/generate-info.json index 85d964e89302..0037c7956e0d 100644 --- a/src/Portal/Portal.Autorest/generate-info.json +++ b/src/Portal/Portal.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "01fee761-5819-4cbd-a3a5-8b34ed898958" + "generate_Id": "990ad366-75d8-4ff7-921d-d6902f8c78bf" } diff --git a/src/Portal/Portal.sln b/src/Portal/Portal.sln index 0053a2d33c81..a19a901d52e0 100644 --- a/src/Portal/Portal.sln +++ b/src/Portal/Portal.sln @@ -19,7 +19,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Portal", "Portal\Portal.csproj", "{35102A7D-CDFE-4854-B4D8-21C68EC04172}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{B2A17B47-DF0E-49D0-8A03-F097900D809B}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{9ED87087-4654-4725-8A1B-525643DF0EFB}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -58,10 +58,10 @@ Global {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|Any CPU.Build.0 = Debug|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.ActiveCfg = Release|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.Build.0 = Release|Any CPU - {B2A17B47-DF0E-49D0-8A03-F097900D809B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B2A17B47-DF0E-49D0-8A03-F097900D809B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B2A17B47-DF0E-49D0-8A03-F097900D809B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B2A17B47-DF0E-49D0-8A03-F097900D809B}.Release|Any CPU.Build.0 = Release|Any CPU + {9ED87087-4654-4725-8A1B-525643DF0EFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9ED87087-4654-4725-8A1B-525643DF0EFB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9ED87087-4654-4725-8A1B-525643DF0EFB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9ED87087-4654-4725-8A1B-525643DF0EFB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(NestedProjects) = preSolution {18EAC80C-6DEC-4EBC-A0BB-320B5324264A} = {7913BDC6-0FBA-43BB-AB8D-D809BD22EE94} From 3dcd04642fc4c30b89c325b429ed44cea04af401 Mon Sep 17 00:00:00 2001 From: Qi Pan <43341456+Pan-Qi@users.noreply.github.com> Date: Tue, 25 Mar 2025 22:57:03 +1100 Subject: [PATCH 3/7] regenerate with latest autorest --- src/Portal/Portal.Autorest/docs/Az.Portal.md | 2 +- src/Portal/Portal.Autorest/generate-info.json | 2 +- src/Portal/Portal.sln | 10 ++++---- src/Portal/Portal/Az.Portal.psd1 | 2 +- .../Portal/help/Get-AzPortalDashboard.md | 23 +++-------------- .../Portal/help/New-AzPortalDashboard.md | 25 ++++--------------- .../Portal/help/Remove-AzPortalDashboard.md | 19 ++------------ .../Portal/help/Set-AzPortalDashboard.md | 17 +------------ .../Portal/help/Update-AzPortalDashboard.md | 23 +++-------------- 9 files changed, 24 insertions(+), 99 deletions(-) diff --git a/src/Portal/Portal.Autorest/docs/Az.Portal.md b/src/Portal/Portal.Autorest/docs/Az.Portal.md index 5115620ce3ff..38f6e374fd80 100644 --- a/src/Portal/Portal.Autorest/docs/Az.Portal.md +++ b/src/Portal/Portal.Autorest/docs/Az.Portal.md @@ -1,6 +1,6 @@ --- Module Name: Az.Portal -Module Guid: 0d19ca5d-46f3-4805-bde3-e14ee0aab1b8 +Module Guid: 31aca27a-d75c-4e24-9a57-ed8c410db168 Download Help Link: https://learn.microsoft.com/powershell/module/az.portal Help Version: 1.0.0.0 Locale: en-US diff --git a/src/Portal/Portal.Autorest/generate-info.json b/src/Portal/Portal.Autorest/generate-info.json index 0037c7956e0d..ce50e094fcfe 100644 --- a/src/Portal/Portal.Autorest/generate-info.json +++ b/src/Portal/Portal.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "990ad366-75d8-4ff7-921d-d6902f8c78bf" + "generate_Id": "c82ff7e7-dde1-4d2e-ab45-54881b5549b0" } diff --git a/src/Portal/Portal.sln b/src/Portal/Portal.sln index a19a901d52e0..e48ce6914e1b 100644 --- a/src/Portal/Portal.sln +++ b/src/Portal/Portal.sln @@ -19,7 +19,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Portal", "Portal\Portal.csproj", "{35102A7D-CDFE-4854-B4D8-21C68EC04172}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{9ED87087-4654-4725-8A1B-525643DF0EFB}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{B72647DA-6C82-49DA-8295-032F7712D7E8}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -58,10 +58,10 @@ Global {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|Any CPU.Build.0 = Debug|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.ActiveCfg = Release|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.Build.0 = Release|Any CPU - {9ED87087-4654-4725-8A1B-525643DF0EFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9ED87087-4654-4725-8A1B-525643DF0EFB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9ED87087-4654-4725-8A1B-525643DF0EFB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9ED87087-4654-4725-8A1B-525643DF0EFB}.Release|Any CPU.Build.0 = Release|Any CPU + {B72647DA-6C82-49DA-8295-032F7712D7E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B72647DA-6C82-49DA-8295-032F7712D7E8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B72647DA-6C82-49DA-8295-032F7712D7E8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B72647DA-6C82-49DA-8295-032F7712D7E8}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(NestedProjects) = preSolution {18EAC80C-6DEC-4EBC-A0BB-320B5324264A} = {7913BDC6-0FBA-43BB-AB8D-D809BD22EE94} diff --git a/src/Portal/Portal/Az.Portal.psd1 b/src/Portal/Portal/Az.Portal.psd1 index 686c93f3b201..9c84802b6deb 100644 --- a/src/Portal/Portal/Az.Portal.psd1 +++ b/src/Portal/Portal/Az.Portal.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/6/2025 +# Generated on: 3/25/2025 # @{ diff --git a/src/Portal/Portal/help/Get-AzPortalDashboard.md b/src/Portal/Portal/help/Get-AzPortalDashboard.md index 6b73c2ef732c..c06cae9a3af1 100644 --- a/src/Portal/Portal/help/Get-AzPortalDashboard.md +++ b/src/Portal/Portal/help/Get-AzPortalDashboard.md @@ -15,25 +15,25 @@ Gets the Dashboard. ### List (Default) ``` Get-AzPortalDashboard [-SubscriptionId ] [-DefaultProfile ] - [-ProgressAction ] [] + [] ``` ### Get ``` Get-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [-ProgressAction ] [] + [-DefaultProfile ] [] ``` ### List1 ``` Get-AzPortalDashboard -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] - [-ProgressAction ] [] + [] ``` ### GetViaIdentity ``` Get-AzPortalDashboard -InputObject [-DefaultProfile ] - [-ProgressAction ] [] + [] ``` ## DESCRIPTION @@ -116,21 +116,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ResourceGroupName The name of the resource group. The name is case insensitive. diff --git a/src/Portal/Portal/help/New-AzPortalDashboard.md b/src/Portal/Portal/help/New-AzPortalDashboard.md index 13fb91e41d30..bb12d50f5f25 100644 --- a/src/Portal/Portal/help/New-AzPortalDashboard.md +++ b/src/Portal/Portal/help/New-AzPortalDashboard.md @@ -16,34 +16,34 @@ create a Dashboard. ``` New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] -Location [-Lens ] [-Metadata ] [-Tag ] [-DefaultProfile ] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ### Create ``` New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -Resource [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + -Resource [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### CreateViaJsonFilePath ``` New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -JsonFilePath [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### CreateViaJsonString ``` New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -JsonString [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### CreateByFile ``` New-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -DashboardPath [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + -DashboardPath [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -189,21 +189,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Resource The shared dashboard resource definition. diff --git a/src/Portal/Portal/help/Remove-AzPortalDashboard.md b/src/Portal/Portal/help/Remove-AzPortalDashboard.md index 889f2e0a301b..cb18ed8348e3 100644 --- a/src/Portal/Portal/help/Remove-AzPortalDashboard.md +++ b/src/Portal/Portal/help/Remove-AzPortalDashboard.md @@ -15,14 +15,14 @@ Deletes the Dashboard. ### Delete (Default) ``` Remove-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [-PassThru] [-ProgressAction ] [-WhatIf] [-Confirm] + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] [] ``` ### DeleteViaIdentity ``` Remove-AzPortalDashboard -InputObject [-DefaultProfile ] [-PassThru] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -107,21 +107,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ResourceGroupName The name of the resource group. The name is case insensitive. diff --git a/src/Portal/Portal/help/Set-AzPortalDashboard.md b/src/Portal/Portal/help/Set-AzPortalDashboard.md index b49a76ffb01a..3395e56374de 100644 --- a/src/Portal/Portal/help/Set-AzPortalDashboard.md +++ b/src/Portal/Portal/help/Set-AzPortalDashboard.md @@ -14,7 +14,7 @@ Creates or updates a Dashboard. ``` Set-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -DashboardPath [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + -DashboardPath [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -82,21 +82,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ResourceGroupName ```yaml diff --git a/src/Portal/Portal/help/Update-AzPortalDashboard.md b/src/Portal/Portal/help/Update-AzPortalDashboard.md index 1bd3cb57191b..cb513b7f02ed 100644 --- a/src/Portal/Portal/help/Update-AzPortalDashboard.md +++ b/src/Portal/Portal/help/Update-AzPortalDashboard.md @@ -16,27 +16,27 @@ update an existing Dashboard. ``` Update-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] [-Lens ] [-Metadata ] [-Tag ] [-DefaultProfile ] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ### UpdateViaJsonString ``` Update-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -JsonString [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### UpdateViaJsonFilePath ``` Update-AzPortalDashboard -Name -ResourceGroupName [-SubscriptionId ] - -JsonFilePath [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### UpdateViaIdentityExpanded ``` Update-AzPortalDashboard -InputObject [-Lens ] [-Metadata ] - [-Tag ] [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -181,21 +181,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ResourceGroupName The name of the resource group. The name is case insensitive. From aeefef45dd2f51b2c86c594ea421e1b46f65e706 Mon Sep 17 00:00:00 2001 From: Qi Pan <43341456+Pan-Qi@users.noreply.github.com> Date: Tue, 25 Mar 2025 23:13:12 +1100 Subject: [PATCH 4/7] rebase --- src/Portal/Portal.Autorest/generate-info.json | 2 +- src/Portal/Portal.sln | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Portal/Portal.Autorest/generate-info.json b/src/Portal/Portal.Autorest/generate-info.json index ce50e094fcfe..c7b8c46861ce 100644 --- a/src/Portal/Portal.Autorest/generate-info.json +++ b/src/Portal/Portal.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "c82ff7e7-dde1-4d2e-ab45-54881b5549b0" + "generate_Id": "f8d3f56f-8209-47fe-a625-82ec26c292c1" } diff --git a/src/Portal/Portal.sln b/src/Portal/Portal.sln index e48ce6914e1b..621b5a578c18 100644 --- a/src/Portal/Portal.sln +++ b/src/Portal/Portal.sln @@ -19,7 +19,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Portal", "Portal\Portal.csproj", "{35102A7D-CDFE-4854-B4D8-21C68EC04172}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{B72647DA-6C82-49DA-8295-032F7712D7E8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -58,10 +58,10 @@ Global {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|Any CPU.Build.0 = Debug|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.ActiveCfg = Release|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.Build.0 = Release|Any CPU - {B72647DA-6C82-49DA-8295-032F7712D7E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B72647DA-6C82-49DA-8295-032F7712D7E8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B72647DA-6C82-49DA-8295-032F7712D7E8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B72647DA-6C82-49DA-8295-032F7712D7E8}.Release|Any CPU.Build.0 = Release|Any CPU + {45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}.Debug|Any CPU.Build.0 = Debug|Any CPU + {45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}.Release|Any CPU.ActiveCfg = Release|Any CPU + {45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(NestedProjects) = preSolution {18EAC80C-6DEC-4EBC-A0BB-320B5324264A} = {7913BDC6-0FBA-43BB-AB8D-D809BD22EE94} From d8a16e39ef7aa314309f141bca600e73f7a1832d Mon Sep 17 00:00:00 2001 From: Qi Pan <43341456+Pan-Qi@users.noreply.github.com> Date: Mon, 31 Mar 2025 14:25:47 +1100 Subject: [PATCH 5/7] add changelog --- src/Portal/Portal/ChangeLog.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Portal/Portal/ChangeLog.md b/src/Portal/Portal/ChangeLog.md index 5bcde3a3feeb..eeea63b7eea3 100644 --- a/src/Portal/Portal/ChangeLog.md +++ b/src/Portal/Portal/ChangeLog.md @@ -18,11 +18,11 @@ - Additional information about change #1 --> ## Upcoming Release +* Regenerate the module using the latest v4 generator to incorporate the new features added in the v4 generator. ## Version 0.3.0 * Updated Api Version to 2022-12-01-preview. - ## Version 0.2.1 * Upgraded nuget package to signed package. @@ -31,4 +31,3 @@ ## Version 0.1.0 * the first preview release - From 5d025f3bec23b62e79b8764ac47381405b73d31a Mon Sep 17 00:00:00 2001 From: Qi Pan <43341456+Pan-Qi@users.noreply.github.com> Date: Wed, 2 Apr 2025 22:28:46 +1100 Subject: [PATCH 6/7] fix changelog --- src/Portal/Portal/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Portal/Portal/ChangeLog.md b/src/Portal/Portal/ChangeLog.md index eeea63b7eea3..476370e42f29 100644 --- a/src/Portal/Portal/ChangeLog.md +++ b/src/Portal/Portal/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* Regenerate the module using the latest v4 generator to incorporate the new features added in the v4 generator. +* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). ## Version 0.3.0 * Updated Api Version to 2022-12-01-preview. From bce8b0593c8ac3dcab0441a4dde791ff1563e6c8 Mon Sep 17 00:00:00 2001 From: Qi Pan <43341456+Pan-Qi@users.noreply.github.com> Date: Mon, 14 Apr 2025 12:01:44 +1000 Subject: [PATCH 7/7] update directive --- src/Portal/Portal.Autorest/README.md | 4 +- src/Portal/Portal.Autorest/generate-info.json | 2 +- src/Portal/Portal.sln | 87 +++++++++++++++++-- src/Portal/Portal/Az.Portal.psd1 | 2 +- 4 files changed, 83 insertions(+), 12 deletions(-) diff --git a/src/Portal/Portal.Autorest/README.md b/src/Portal/Portal.Autorest/README.md index 1e84faee4c72..e6e6d6f0090d 100644 --- a/src/Portal/Portal.Autorest/README.md +++ b/src/Portal/Portal.Autorest/README.md @@ -62,12 +62,12 @@ directive: - where: verb: New subject: Dashboard - variant: CreateViaIdentity|CreateViaIdentityExpanded + variant: ^CreateViaIdentity$|^CreateViaIdentityExpanded$ remove: true - where: verb: Update subject: Dashboard - variant: ^Update$|^UpdateViaIdentity$ + variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString)) remove: true - from: swagger-document where: $.definitions.DashboardPropertiesWithProvisioningState.properties.metadata diff --git a/src/Portal/Portal.Autorest/generate-info.json b/src/Portal/Portal.Autorest/generate-info.json index c7b8c46861ce..befaf865a01c 100644 --- a/src/Portal/Portal.Autorest/generate-info.json +++ b/src/Portal/Portal.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "f8d3f56f-8209-47fe-a625-82ec26c292c1" + "generate_Id": "aaee2442-a92f-4fe2-abbc-96ce6b74ab42" } diff --git a/src/Portal/Portal.sln b/src/Portal/Portal.sln index 621b5a578c18..a216486509f4 100644 --- a/src/Portal/Portal.sln +++ b/src/Portal/Portal.sln @@ -19,49 +19,119 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Portal", "Portal\Portal.csproj", "{35102A7D-CDFE-4854-B4D8-21C68EC04172}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Portal.Autorest", "Portal.Autorest", "{7B7F069B-3014-548D-73F7-3F46755419EC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Portal", "..\..\generated\Portal\Portal.Autorest\Az.Portal.csproj", "{AC0C6CFF-9445-4713-B22F-443272DA78EF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Debug|x64.ActiveCfg = Debug|Any CPU + {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Debug|x64.Build.0 = Debug|Any CPU + {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Debug|x86.ActiveCfg = Debug|Any CPU + {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Debug|x86.Build.0 = Debug|Any CPU {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Release|Any CPU.ActiveCfg = Release|Any CPU {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Release|Any CPU.Build.0 = Release|Any CPU + {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Release|x64.ActiveCfg = Release|Any CPU + {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Release|x64.Build.0 = Release|Any CPU + {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Release|x86.ActiveCfg = Release|Any CPU + {18EAC80C-6DEC-4EBC-A0BB-320B5324264A}.Release|x86.Build.0 = Release|Any CPU {018E58EF-A557-40FB-9093-89B02C56D332}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {018E58EF-A557-40FB-9093-89B02C56D332}.Debug|Any CPU.Build.0 = Debug|Any CPU + {018E58EF-A557-40FB-9093-89B02C56D332}.Debug|x64.ActiveCfg = Debug|Any CPU + {018E58EF-A557-40FB-9093-89B02C56D332}.Debug|x64.Build.0 = Debug|Any CPU + {018E58EF-A557-40FB-9093-89B02C56D332}.Debug|x86.ActiveCfg = Debug|Any CPU + {018E58EF-A557-40FB-9093-89B02C56D332}.Debug|x86.Build.0 = Debug|Any CPU {018E58EF-A557-40FB-9093-89B02C56D332}.Release|Any CPU.ActiveCfg = Release|Any CPU {018E58EF-A557-40FB-9093-89B02C56D332}.Release|Any CPU.Build.0 = Release|Any CPU + {018E58EF-A557-40FB-9093-89B02C56D332}.Release|x64.ActiveCfg = Release|Any CPU + {018E58EF-A557-40FB-9093-89B02C56D332}.Release|x64.Build.0 = Release|Any CPU + {018E58EF-A557-40FB-9093-89B02C56D332}.Release|x86.ActiveCfg = Release|Any CPU + {018E58EF-A557-40FB-9093-89B02C56D332}.Release|x86.Build.0 = Release|Any CPU {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Debug|x64.ActiveCfg = Debug|Any CPU + {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Debug|x64.Build.0 = Debug|Any CPU + {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Debug|x86.ActiveCfg = Debug|Any CPU + {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Debug|x86.Build.0 = Debug|Any CPU {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Release|Any CPU.ActiveCfg = Release|Any CPU {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Release|Any CPU.Build.0 = Release|Any CPU + {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Release|x64.ActiveCfg = Release|Any CPU + {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Release|x64.Build.0 = Release|Any CPU + {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Release|x86.ActiveCfg = Release|Any CPU + {F0B7B4B8-FFCF-46F5-B481-4217D1DF02CF}.Release|x86.Build.0 = Release|Any CPU {62A6FE42-4903-4723-89E8-BC1CF7083887}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {62A6FE42-4903-4723-89E8-BC1CF7083887}.Debug|Any CPU.Build.0 = Debug|Any CPU + {62A6FE42-4903-4723-89E8-BC1CF7083887}.Debug|x64.ActiveCfg = Debug|Any CPU + {62A6FE42-4903-4723-89E8-BC1CF7083887}.Debug|x64.Build.0 = Debug|Any CPU + {62A6FE42-4903-4723-89E8-BC1CF7083887}.Debug|x86.ActiveCfg = Debug|Any CPU + {62A6FE42-4903-4723-89E8-BC1CF7083887}.Debug|x86.Build.0 = Debug|Any CPU {62A6FE42-4903-4723-89E8-BC1CF7083887}.Release|Any CPU.ActiveCfg = Release|Any CPU {62A6FE42-4903-4723-89E8-BC1CF7083887}.Release|Any CPU.Build.0 = Release|Any CPU + {62A6FE42-4903-4723-89E8-BC1CF7083887}.Release|x64.ActiveCfg = Release|Any CPU + {62A6FE42-4903-4723-89E8-BC1CF7083887}.Release|x64.Build.0 = Release|Any CPU + {62A6FE42-4903-4723-89E8-BC1CF7083887}.Release|x86.ActiveCfg = Release|Any CPU + {62A6FE42-4903-4723-89E8-BC1CF7083887}.Release|x86.Build.0 = Release|Any CPU {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Debug|x64.ActiveCfg = Debug|Any CPU + {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Debug|x64.Build.0 = Debug|Any CPU + {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Debug|x86.ActiveCfg = Debug|Any CPU + {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Debug|x86.Build.0 = Debug|Any CPU {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Release|Any CPU.ActiveCfg = Release|Any CPU {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Release|Any CPU.Build.0 = Release|Any CPU + {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Release|x64.ActiveCfg = Release|Any CPU + {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Release|x64.Build.0 = Release|Any CPU + {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Release|x86.ActiveCfg = Release|Any CPU + {286FFFA0-E777-44D6-89C1-355EA07CFEC5}.Release|x86.Build.0 = Release|Any CPU {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Debug|x64.ActiveCfg = Debug|Any CPU + {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Debug|x64.Build.0 = Debug|Any CPU + {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Debug|x86.ActiveCfg = Debug|Any CPU + {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Debug|x86.Build.0 = Debug|Any CPU {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Release|Any CPU.ActiveCfg = Release|Any CPU {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Release|Any CPU.Build.0 = Release|Any CPU + {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Release|x64.ActiveCfg = Release|Any CPU + {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Release|x64.Build.0 = Release|Any CPU + {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Release|x86.ActiveCfg = Release|Any CPU + {783399CE-86A7-43DF-AD17-5C441DF45DDD}.Release|x86.Build.0 = Release|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|Any CPU.Build.0 = Debug|Any CPU + {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|x64.ActiveCfg = Debug|Any CPU + {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|x64.Build.0 = Debug|Any CPU + {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|x86.ActiveCfg = Debug|Any CPU + {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Debug|x86.Build.0 = Debug|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.ActiveCfg = Release|Any CPU {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|Any CPU.Build.0 = Release|Any CPU - {45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}.Debug|Any CPU.Build.0 = Debug|Any CPU - {45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}.Release|Any CPU.ActiveCfg = Release|Any CPU - {45CAE1FB-7EC2-43FF-B65E-DA4BF2319617}.Release|Any CPU.Build.0 = Release|Any CPU + {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|x64.ActiveCfg = Release|Any CPU + {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|x64.Build.0 = Release|Any CPU + {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|x86.ActiveCfg = Release|Any CPU + {35102A7D-CDFE-4854-B4D8-21C68EC04172}.Release|x86.Build.0 = Release|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Debug|x64.ActiveCfg = Debug|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Debug|x64.Build.0 = Debug|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Debug|x86.ActiveCfg = Debug|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Debug|x86.Build.0 = Debug|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Release|Any CPU.Build.0 = Release|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Release|x64.ActiveCfg = Release|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Release|x64.Build.0 = Release|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Release|x86.ActiveCfg = Release|Any CPU + {AC0C6CFF-9445-4713-B22F-443272DA78EF}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {18EAC80C-6DEC-4EBC-A0BB-320B5324264A} = {7913BDC6-0FBA-43BB-AB8D-D809BD22EE94} @@ -70,5 +140,6 @@ Global {62A6FE42-4903-4723-89E8-BC1CF7083887} = {7913BDC6-0FBA-43BB-AB8D-D809BD22EE94} {286FFFA0-E777-44D6-89C1-355EA07CFEC5} = {7913BDC6-0FBA-43BB-AB8D-D809BD22EE94} {783399CE-86A7-43DF-AD17-5C441DF45DDD} = {7913BDC6-0FBA-43BB-AB8D-D809BD22EE94} + {AC0C6CFF-9445-4713-B22F-443272DA78EF} = {7B7F069B-3014-548D-73F7-3F46755419EC} EndGlobalSection EndGlobal diff --git a/src/Portal/Portal/Az.Portal.psd1 b/src/Portal/Portal/Az.Portal.psd1 index 9c84802b6deb..300ef9107560 100644 --- a/src/Portal/Portal/Az.Portal.psd1 +++ b/src/Portal/Portal/Az.Portal.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/25/2025 +# Generated on: 4/14/2025 # @{